Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openssl/openssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-12-05 23:50:52 +0300
committerRichard Levitte <levitte@openssl.org>2002-12-05 23:50:52 +0300
commitbb9104f0eef979da61a86ac4b0d34731b72cccd3 (patch)
treef631b81ce6123ceb214435d86bd4150a7b616287 /apps
parentae0b7667a964f3eafb9b4d6b3a4a91fb7d15e76b (diff)
Corrected DJGPP patch
Diffstat (limited to 'apps')
-rw-r--r--apps/Makefile.ssl3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/Makefile.ssl b/apps/Makefile.ssl
index 8871a98415..ce86cff322 100644
--- a/apps/Makefile.ssl
+++ b/apps/Makefile.ssl
@@ -148,7 +148,8 @@ $(PROGRAM): progs.h $(E_OBJ) $(PROGRAM).o $(DLIBCRYPTO) $(DLIBSSL)
fi
-(cd ..; OPENSSL="`pwd`/apps/openssl"; export OPENSSL; \
LIBPATH="`pwd`"; LD_LIBRARY_PATH="`pwd`"; DYLD_LIBRARY_PATH="`pwd`"; SHLIB_PATH="`pwd`"; \
- if [ "$(PLATFORM)" != "Cygwin" ]; then PATH="`pwd`:$$PATH"; fi; \
+ if [ "$(PLATFORM)" == "DJGPP" ]; then PATH="`pwd`\;$$PATH"; \
+ elif [ "$(PLATFORM)" != "Cygwin" ]; then PATH="`pwd`:$$PATH"; fi; \
export LD_LIBRARY_PATH DYLD_LIBRARY_PATH SHLIB_PATH LIBPATH PATH; \
$(PERL) tools/c_rehash certs)