From: Kirill Marinushkin Date: Sun, 24 Apr 2016 00:01:25 +0000 (+0200) Subject: Fixed scripts order for generate_crypto_objects target X-Git-Tag: OpenSSL_1_1_0-pre6~1004 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=e6f2bb66042f329fbb6a4ab810abce7c295b08dc Fixed scripts order for generate_crypto_objects target Script obj_dat.pl depends on file obj_mac.h generated by script objects.pl Reviewed-by: Richard Levitte Reviewed-by: Rich Salz --- diff --git a/Configurations/unix-Makefile.tmpl b/Configurations/unix-Makefile.tmpl index 900c09fc1d..23014f7b14 100644 --- a/Configurations/unix-Makefile.tmpl +++ b/Configurations/unix-Makefile.tmpl @@ -653,13 +653,13 @@ generate_crypto_bn: ( cd $(SRCDIR); $(PERL) crypto/bn/bn_prime.pl > crypto/bn/bn_prime.h ) generate_crypto_objects: - ( cd $(SRCDIR); $(PERL) crypto/objects/obj_dat.pl \ - include/openssl/obj_mac.h \ - crypto/objects/obj_dat.h ) ( cd $(SRCDIR); $(PERL) crypto/objects/objects.pl \ crypto/objects/objects.txt \ crypto/objects/obj_mac.num \ include/openssl/obj_mac.h ) + ( cd $(SRCDIR); $(PERL) crypto/objects/obj_dat.pl \ + include/openssl/obj_mac.h \ + crypto/objects/obj_dat.h ) ( cd $(SRCDIR); $(PERL) crypto/objects/objxref.pl \ crypto/objects/obj_mac.num \ crypto/objects/obj_xref.txt \