From 43509de33de31a76cd6f83cb38d2f4943e2affde Mon Sep 17 00:00:00 2001 From: Andy Polyakov Date: Thu, 3 Feb 2005 10:19:36 +0000 Subject: [PATCH] Shut whiny make's up. --- apps/Makefile | 2 +- test/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/Makefile b/apps/Makefile index f771384c99..4ea4ba6f73 100644 --- a/apps/Makefile +++ b/apps/Makefile @@ -152,7 +152,7 @@ $(EXE): progs.h $(E_OBJ) $(PROGRAM).o $(DLIBCRYPTO) $(DLIBSSL) if egrep 'define OPENSSL_FIPS' $(TOP)/include/openssl/opensslconf.h > /dev/null; then \ TOP=$(TOP) $(TOP)/fips/openssl_fips_fingerprint $(TOP)/libcrypto.a $(EXE); \ fi - @for i in `ls ../*.dll 2>/dev/null`; do cp -p $$i .; done; exit 0; + @case "../*.dll" in *\**) ;; *) cp -p ../*.dll .;; esac -(cd ..; \ OPENSSL="`pwd`/util/opensslwrap.sh"; export OPENSSL; \ $(PERL) tools/c_rehash certs) diff --git a/test/Makefile b/test/Makefile index c6ea0028b2..962be01b98 100644 --- a/test/Makefile +++ b/test/Makefile @@ -585,7 +585,7 @@ dummytest$(EXE_EXT): dummytest.o $(DLIBCRYPTO) LD_LIBRARY_PATH=..:$$LD_LIBRARY_PATH \ $(CC) -o dummytest$(EXE_EXT) $(CFLAGS) dummytest.o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) ; \ fi - @for i in `ls ../*.dll 2>/dev/null`; do cp -p $$i .; done; exit 0 + @case "../*.dll" in *\**) ;; *) cp -p ../*.dll .;; esac # DO NOT DELETE THIS LINE -- make depend depends on it. -- 2.25.1