diff options
author | Hans-Joachim Lankenau <hjs@openoffice.org> | 2001-10-22 11:18:27 +0000 |
---|---|---|
committer | Hans-Joachim Lankenau <hjs@openoffice.org> | 2001-10-22 11:18:27 +0000 |
commit | 0010509c352d3ffcfbbdc7237d9db829f9e495e5 (patch) | |
tree | 5b221d5cae6ccb2b8622c7d9953e668a2796b7f5 /openssl | |
parent | 0c1e21dc0cd75f3d33e04ca1d80afa9321a1b67d (diff) |
#89835# workaround for LD_LIBRARY_PATH prob on linux intel
Diffstat (limited to 'openssl')
-rw-r--r-- | openssl/makefile.mk | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/openssl/makefile.mk b/openssl/makefile.mk index e26101686424..3bb408daa9de 100644 --- a/openssl/makefile.mk +++ b/openssl/makefile.mk @@ -2,9 +2,9 @@ # # $RCSfile: makefile.mk,v $ # -# $Revision: 1.6 $ +# $Revision: 1.7 $ # -# last change: $Author: hjs $ $Date: 2001-10-19 13:51:04 $ +# last change: $Author: hjs $ $Date: 2001-10-22 12:18:27 $ # # The Contents of this file are made available subject to the terms of # either of the following licenses @@ -71,6 +71,12 @@ TARGET=openssl # --- Files -------------------------------------------------------- +# workaround a strange behavior of ld.so (2.1.3) +.IF "$(OS)$(CPU)"=="LINUXI" +LD_LIBRARY_PATH!:=$(subst,../lib, $(LD_LIBRARY_PATH)) +.EXPORT : LD_LIBRARY_PATH +.ENDIF + TARFILE_NAME=openssl-0.9.5a PATCH_FILE_NAME=openssl-0.9.5a.patch |