From b164ee81afc373110554eebc2dc63734ff57a34e Mon Sep 17 00:00:00 2001 From: Erik de Castro Lopo Date: Sun, 4 Nov 2007 22:41:47 +1100 Subject: [PATCH] Octave/octave_test.sh : Allow test to run when configured with --disable-shared. --- Octave/octave_test.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Octave/octave_test.sh b/Octave/octave_test.sh index 419b5969..3a3fbc41 100755 --- a/Octave/octave_test.sh +++ b/Octave/octave_test.sh @@ -18,9 +18,14 @@ elif [ -f "../src/.libs/libsndfile.dylib" ]; then elif [ -f "../src/libsndfile.dylib" ]; then libsndfile_lib_location="../src/" else + echo + echo echo "Not able to find the libsndfile shared lib we've just built." - exit 1 + echo "This may cause the following test to fail." + echo + echo fi + libsndfile_lib_location=`(cd $libsndfile_lib_location && pwd)`