SHLIB_PATH environment variable added for HPUX
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4410 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
dcaa5d56a7
commit
3903284ef6
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
|
# 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.
|
# 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 = \
|
run_testcase = \
|
||||||
(cd $*; javac *.java; ); \
|
(cd $*; javac *.java; ); \
|
||||||
if [ -f $*\_runme.java ]; then ( \
|
if [ -f $*\_runme.java ]; then ( \
|
||||||
javac $*\_runme.java; \
|
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;
|
fi;
|
||||||
|
|
||||||
# Clean: remove testcase directories
|
# Clean: remove testcase directories
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue