summaryrefslogtreecommitdiffstats
path: root/apps
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 /apps
parente904bd0ddc04b499c7f1901946fa02016f09abb2 (diff)
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 'apps')
-rw-r--r--apps/Makefile.ssl2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/Makefile.ssl b/apps/Makefile.ssl
index 54096436d6..c8f9e9020a 100644
--- a/apps/Makefile.ssl
+++ b/apps/Makefile.ssl
@@ -151,7 +151,7 @@ $(PROGRAM): progs.h $(E_OBJ) $(PROGRAM).o $(DLIBCRYPTO) $(DLIBSSL)
-(cd ..; OPENSSL="`pwd`/apps/openssl"; export OPENSSL; \
LIBPATH="`pwd`"; LD_LIBRARY_PATH="`pwd`"; DYLD_LIBRARY_PATH="`pwd`"; SHLIB_PATH="`pwd`"; \
if [ "$(PLATFORM)" = "DJGPP" ]; then PATH="`pwd`\;$$PATH"; \
- elif [ "$(PLATFORM)" != "Cygwin" ]; then PATH="`pwd`:$$PATH"; fi; \
+ elif [ "$(PLATFORM)" = "Cygwin" ]; then PATH="`pwd`:$$PATH"; fi; \
export LD_LIBRARY_PATH DYLD_LIBRARY_PATH SHLIB_PATH LIBPATH PATH; \
$(PERL) tools/c_rehash certs)