diff options
author | Richard Levitte <levitte@openssl.org> | 2004-11-03 00:55:01 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2004-11-03 00:55:01 +0100 |
commit | a2ac429da2f90616d1465dac704eb1e91d2be722 (patch) | |
tree | 10395696075d879ebe49fdf1c89b574ca4111351 /crypto/txt_db | |
parent | Because -rpath/-R may have been used, our settings of LD_LIBRARY_PATH (diff) | |
download | openssl-a2ac429da2f90616d1465dac704eb1e91d2be722.tar.xz openssl-a2ac429da2f90616d1465dac704eb1e91d2be722.zip |
Don't use $(EXHEADER) directly in for loops, as most shells will break
if $(EXHEADER) is empty.
Notified by many, solution suggested by Carson Gaspar <carson@taltos.org>
Diffstat (limited to 'crypto/txt_db')
-rw-r--r-- | crypto/txt_db/Makefile.ssl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/txt_db/Makefile.ssl b/crypto/txt_db/Makefile.ssl index 3e2aea103b..57b5dea702 100644 --- a/crypto/txt_db/Makefile.ssl +++ b/crypto/txt_db/Makefile.ssl @@ -53,7 +53,7 @@ links: @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) install: - @for i in $(EXHEADER) ; \ + @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ do \ (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |