From 7e9826109cfed4c6fc162ea7aa68e9719eb92a33 Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Fri, 23 Feb 2007 20:14:21 +0000 Subject: Avoid use of "echo -n" some platforms don't support it. --- fips-1.0/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"; \ -- cgit v1.2.3