[openssl-commits] [openssl] master update

Ben Laurie ben at openssl.org
Sat Feb 20 17:18:44 UTC 2016


The branch master has been updated
       via  58f2b0ae588466692e73ad434f1053e21a003294 (commit)
      from  f27f64e17ad2b5b8bdacbfffb486d9b1f05b9b71 (commit)


- Log -----------------------------------------------------------------
commit 58f2b0ae588466692e73ad434f1053e21a003294
Author: Ben Laurie <ben at links.org>
Date:   Sat Feb 20 12:50:30 2016 +0000

    Missing extension on dependency, .d file is not always made (e.g. when input
    is a .s).
    
    Reviewed-by: Richard Levitte <levitte at openssl.org>

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

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

diff --git a/Configurations/unix-Makefile.tmpl b/Configurations/unix-Makefile.tmpl
index 61ee7a6..e226eb7 100644
--- a/Configurations/unix-Makefile.tmpl
+++ b/Configurations/unix-Makefile.tmpl
@@ -844,7 +844,8 @@ EOF
       }
       return <<"EOF";
 $obj\$(DEP_EXT): $deps
-	\$(CC) \$(CFLAGS) $ecflags$incs -MM -MF \$\@ -MQ $obj $srcs
+	\$(CC) \$(CFLAGS) $ecflags$incs -MM -MF \$\@ -MQ $obj\$(OBJ_EXT) $srcs
+	touch \$\@
 $obj\$(OBJ_EXT): $obj\$(DEP_EXT)
 	\$(CC) \$(CFLAGS) $ecflags$incs -c -o \$\@ $srcs
 EOF


More information about the openssl-commits mailing list