make errors: use the new util/ck_errf.pl options
Reviewed-by: Tim Hudson <tjh@openssl.org> (Merged from https://github.com/openssl/openssl/pull/6461)
This commit is contained in:
parent
b9def672b1
commit
aa6cc8d33c
1 changed files with 5 additions and 3 deletions
|
@ -760,11 +760,13 @@ generate_fuzz_oids:
|
|||
# Set to -force to force a rebuild
|
||||
ERROR_REBUILD=
|
||||
errors:
|
||||
( cd $(SRCDIR); $(PERL) util/ck_errf.pl -strict */*.c */*/*.c )
|
||||
( b=`pwd`; cd $(SRCDIR); \
|
||||
( b=`pwd`; set -e; cd $(SRCDIR); \
|
||||
$(PERL) util/ck_errf.pl -strict -internal; \
|
||||
$(PERL) -I$$b util/mkerr.pl $(ERROR_REBUILD) -internal )
|
||||
( b=`pwd`; cd $(SRCDIR)/engines; \
|
||||
( b=`pwd`; set -e; cd $(SRCDIR)/engines; \
|
||||
for E in *.ec ; do \
|
||||
$(PERL) ../util/ck_errf.pl -strict \
|
||||
-conf $$E `basename $$E .ec`.c; \
|
||||
$(PERL) -I$$b ../util/mkerr.pl $(ERROR_REBUILD) -static \
|
||||
-conf $$E `basename $$E .ec`.c ; \
|
||||
done )
|
||||
|
|
Loading…
Reference in a new issue