Commit ac89799c authored by Richard Levitte's avatar Richard Levitte
Browse files

Shut find up about files not found



Some of the files in $(DEPS) might not exist.  We don't need to know.

Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
parent c6aca19b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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; \