summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2007-02-23 20:14:21 +0000
committerDr. Stephen Henson <steve@openssl.org>2007-02-23 20:14:21 +0000
commit7e9826109cfed4c6fc162ea7aa68e9719eb92a33 (patch)
tree80d44720ee5977234706c488e68739bff1b59496
parent79f67018b00a17f501ca030545e28287f38e863e (diff)
Avoid use of "echo -n" some platforms don't support it.OpenSSL-fips2-0_9_7-stable
-rw-r--r--fips-1.0/Makefile2
1 files changed, 1 insertions, 1 deletions
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"; \