The branch master has been updated
       via  ac89799c3e78e9af1031226eb2fd389a70ce3c1b (commit)
      from  c6aca19bb5541883cf8233b03d92e9ef6d91357c (commit)


- Log -----------------------------------------------------------------
commit ac89799c3e78e9af1031226eb2fd389a70ce3c1b
Author: Richard Levitte <[email protected]>
Date:   Sat Mar 19 02:11:31 2016 +0100

    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 <[email protected]>

-----------------------------------------------------------------------

Summary of changes:
 Configurations/unix-Makefile.tmpl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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; \
_____
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits

Reply via email to