From: Dr. Stephen Henson 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://git.librecmc.org/?a=commitdiff_plain;h=7e9826109cfed4c6fc162ea7aa68e9719eb92a33;p=oweals%2Fopenssl.git 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"; \