aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-12-24 10:50:11 +0000
committerRichard Levitte <levitte@openssl.org>2002-12-24 10:50:11 +0000
commitcb661c56b06b99af5eb0bb34cdca13e78a87e6db (patch)
treef485a4d46fe1b940fd6ee22cc8dcb51cf5d19f6f /test
parente904bd0ddc04b499c7f1901946fa02016f09abb2 (diff)
downloadopenssl-cb661c56b06b99af5eb0bb34cdca13e78a87e6db.tar.gz
Cygwin needs the library locatin for .DLLs to be set in PATH. Unfortunately,
the conditional was set to add the library directory to PATH when the platform is NOT Cygwin. Corrected. PR: 404
Diffstat (limited to 'test')
-rw-r--r--test/Makefile.ssl2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile.ssl b/test/Makefile.ssl
index 1489c04967..b485bb4ab9 100644
--- a/test/Makefile.ssl
+++ b/test/Makefile.ssl
@@ -125,7 +125,7 @@ apps:
SET_SO_PATHS=LIBPATH="`cd ..; pwd`"; LD_LIBRARY_PATH="$$LIBPATH"; DYLD_LIBRARY_PATH="$$LIBPATH"; SHLIB_PATH="$$LIBPATH"; \
if [ "$(PLATFORM)" = "DJGPP" ]; then PATH="$$LIBPATH\;$$PATH"; \
- elif [ "$(PLATFORM)" != "Cygwin" ]; then PATH="$$LIBPATH:$$PATH"; fi; \
+ elif [ "$(PLATFORM)" = "Cygwin" ]; then PATH="$${LIBPATH}:$$PATH"; fi; \
export LD_LIBRARY_PATH DYLD_LIBRARY_PATH SHLIB_PATH LIBPATH PATH
alltests: \