quote LIBS to copy with empty string

This commit is contained in:
Dr. Stephen Henson 2011-08-15 18:16:55 +00:00
parent 9015ee1826
commit 7cbab63f5a
2 changed files with 2 additions and 2 deletions

View File

@ -634,7 +634,7 @@ install_sw:
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
done; done;
@set -e; target=install; $(RECURSIVE_BUILD_CMD) @set -e; target=install; $(RECURSIVE_BUILD_CMD)
@set -e; for i in $(LIBS) ;\ @set -e; for i in "$(LIBS)" ;\
do \ do \
if [ -f "$$i" ]; then \ if [ -f "$$i" ]; then \
( echo installing $$i; \ ( echo installing $$i; \

View File

@ -645,7 +645,7 @@ install_sw:
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
done; done;
@set -e; target=install; $(RECURSIVE_BUILD_CMD) @set -e; target=install; $(RECURSIVE_BUILD_CMD)
@set -e; for i in $(LIBS) ;\ @set -e; for i in "$(LIBS)" ;\
do \ do \
if [ -f "$$i" ]; then \ if [ -f "$$i" ]; then \
( echo installing $$i; \ ( echo installing $$i; \