aboutsummaryrefslogtreecommitdiff
path: root/Configurations
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-03-19 02:11:31 +0100
committerRichard Levitte <levitte@openssl.org>2016-03-19 02:40:02 +0100
commitac89799c3e78e9af1031226eb2fd389a70ce3c1b (patch)
tree5b249f8af3aa2160cd1dd68ade484d551179bd4a /Configurations
parentc6aca19bb5541883cf8233b03d92e9ef6d91357c (diff)
downloadopenssl-ac89799c3e78e9af1031226eb2fd389a70ce3c1b.zip
openssl-ac89799c3e78e9af1031226eb2fd389a70ce3c1b.tar.gz
openssl-ac89799c3e78e9af1031226eb2fd389a70ce3c1b.tar.bz2
Shut find up about files not found
Some of the files in $(DEPS) might not exist. We don't need to know. Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'Configurations')
-rw-r--r--Configurations/unix-Makefile.tmpl2
1 files changed, 1 insertions, 1 deletions
diff --git a/Configurations/unix-Makefile.tmpl b/Configurations/unix-Makefile.tmpl
index 77ba75b..be42743 100644
--- a/Configurations/unix-Makefile.tmpl
+++ b/Configurations/unix-Makefile.tmpl
@@ -260,7 +260,7 @@ clean: libclean
# concatenate only if that is true.
depend:
@: {- output_off() if $disabled{makedepend}; "" -}
- @if [ -z "`find $(DEPS) -newer Makefile`" ]; then \
+ @if [ -z "`find $(DEPS) -newer Makefile 2>/dev/null`" ]; then \
( sed -e '/^# DO NOT DELETE THIS LINE.*/,$$d' < Makefile; \
echo '# DO NOT DELETE THIS LINE -- make depend depends on it.'; \
echo; \