summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsteve <steve>2007-02-23 20:14:21 +0000
committersteve <steve>2007-02-23 20:14:21 +0000
commit61373d040985cf8058a111733c70ec5ddd3f2ac7 (patch)
tree23093c1bec204c2937653deb86626d4767ce332c
parent4424214561a6892fc02017ec864c414faae53645 (diff)
downloadopenssl-OpenSSL-fips2-0_9_7-stable.tar.gz
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 921fc2b3c..d602eb8b1 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"; \