From: Dr. Stephen Henson <steve@openssl.org>
Date: Fri, 23 Feb 2007 20:14:21 +0000 (+0000)
Subject: Avoid use of "echo -n" some platforms don't support it.
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=refs%2Fheads%2FOpenSSL-fips2-0_9_7-stable;p=openssl

Avoid use of "echo -n" some platforms don't support it.
---

diff --git a/fips-1.0/Makefile b/fips-1.0/Makefile
index 921fc2b3c5..d602eb8b1d 100644
--- a/fips-1.0/Makefile
+++ b/fips-1.0/Makefile
@@ -73,7 +73,7 @@ all:
 # vendor compiler drivers...
 
 fipscanister.o: fips_start.o $(LIBOBJ) $(FIPS_OBJ_LISTS) fips_end.o
-	@FIPS_BN_ASM=`for i in $(BN_ASM) ; do echo -n "../crypto/bn/$$i " ; done`; \
+	@FIPS_BN_ASM=""; for i in $(BN_ASM) ; do FIPS_BN_ASM="$$FIPS_BN_ASM ../crypto/bn/$$i" ; done; \
 	objs="fips_start.o $(LIBOBJ) $(FIPS_EX_OBJ) $$FIPS_BN_ASM"; \
 	for i in $(FIPS_OBJ_LISTS); do \
 		dir=`dirname $$i`; script="s|^|$$dir/|;s| | $$dir/|g"; \