summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2011-08-15 18:16:55 +0000
committerDr. Stephen Henson <steve@openssl.org>2011-08-15 18:16:55 +0000
commit7cbab63f5a089210b1a7f844ff75426a6c34a820 (patch)
tree80027d34dd84f5273db1993ff252c69efbbc70ef
parent9015ee182667bffa69b01b1716bf95a380a549a3 (diff)
quote LIBS to copy with empty string
-rw-r--r--Makefile.fips2
-rw-r--r--Makefile.org2
2 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.fips b/Makefile.fips
index e60a728dc3..6b88f750c6 100644
--- a/Makefile.fips
+++ b/Makefile.fips
@@ -634,7 +634,7 @@ install_sw:
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
done;
@set -e; target=install; $(RECURSIVE_BUILD_CMD)
- @set -e; for i in $(LIBS) ;\
+ @set -e; for i in "$(LIBS)" ;\
do \
if [ -f "$$i" ]; then \
( echo installing $$i; \
diff --git a/Makefile.org b/Makefile.org
index 3e95c0a025..cb7893e43d 100644
--- a/Makefile.org
+++ b/Makefile.org
@@ -645,7 +645,7 @@ install_sw:
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
done;
@set -e; target=install; $(RECURSIVE_BUILD_CMD)
- @set -e; for i in $(LIBS) ;\
+ @set -e; for i in "$(LIBS)" ;\
do \
if [ -f "$$i" ]; then \
( echo installing $$i; \