SHLIB_PATH environment variable added for HPUX
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@4410 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
220eb01205
commit
704e2ac719
1 changed files with 2 additions and 2 deletions
|
|
@ -55,12 +55,12 @@ setup = \
|
|||
|
||||
# Compiles java files then runs the testcase. A testcase is only run if
|
||||
# a file is found which has _runme.java appended after the testcase name.
|
||||
# Note Java uses LD_LIBRARY_PATH under Unix and PATH under Cygwin.
|
||||
# Note Java uses LD_LIBRARY_PATH under Unix, PATH under Cygwin/Windows and SHLIB_PATH on HPUX.
|
||||
run_testcase = \
|
||||
(cd $*; javac *.java; ); \
|
||||
if [ -f $*\_runme.java ]; then ( \
|
||||
javac $*\_runme.java; \
|
||||
env LD_LIBRARY_PATH="$*:$$LD_LIBRARY_PATH" PATH="$*:$$PATH" java $*\_runme;) \
|
||||
env LD_LIBRARY_PATH="$*:$$LD_LIBRARY_PATH" PATH="$*:$$PATH" SHLIB_PATH="$*:$$SHLIB_PATH" java $*\_runme;) \
|
||||
fi;
|
||||
|
||||
# Clean: remove testcase directories
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue