summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2005-02-03 10:19:59 +0000
committerAndy Polyakov <appro@openssl.org>2005-02-03 10:19:59 +0000
commit877dbcb8a0463596f9e51c34f8e59fbfb6e3bc8e (patch)
treed5488ffd5718fc743c974a1aa2733fc2917dc1e0
parent62d27939c2f103654b52a83b17febe968a67ec73 (diff)
downloadopenssl-new-877dbcb8a0463596f9e51c34f8e59fbfb6e3bc8e.tar.gz
Shut whiny make's up.
-rw-r--r--apps/Makefile.ssl2
-rw-r--r--test/Makefile.ssl2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/Makefile.ssl b/apps/Makefile.ssl
index 5f7ec2e500..8fd61bfe54 100644
--- a/apps/Makefile.ssl
+++ b/apps/Makefile.ssl
@@ -171,7 +171,7 @@ $(EXE): progs.h $(E_OBJ) $(PROGRAM).o $(DLIBCRYPTO) $(DLIBSSL)
LIBDEPS="$(PEX_LIBS) $$LIBRARIES $(EX_LIBS)" \
LIBRPATH=$(INSTALLTOP)/lib \
link_app.$${shlib_target}
- @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.ssl b/test/Makefile.ssl
index 202938033b..1e733b3a1a 100644
--- a/test/Makefile.ssl
+++ b/test/Makefile.ssl
@@ -844,7 +844,7 @@ dummytest$(EXE_EXT): dummytest.o $(DLIBCRYPTO)
LIBDEPS="$(PEX_LIBS) $$LIBRARIES $(EX_LIBS)" \
LIBRPATH=$(INSTALLTOP)/lib \
link_app.$${shlib_target}
- @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.