diff options
author | Richard Levitte <levitte@openssl.org> | 2016-06-29 22:59:50 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2016-07-01 18:36:08 +0200 |
commit | 0483f5865267bb479d667dda84a7c8bbfadfbdeb (patch) | |
tree | 5011c7cf9f3e6d3dc2e7bfa82b18ebeba39da976 /fuzz/build.info | |
parent | Make build.info INCLUDE stmts be both source and build tree relative (diff) | |
download | openssl-0483f5865267bb479d667dda84a7c8bbfadfbdeb.tar.xz openssl-0483f5865267bb479d667dda84a7c8bbfadfbdeb.zip |
Simplify INCLUDE statements in build.info files
Now that INCLUDE considers both the source and build trees, no need
for the rel2abs perl fragment hacks any more.
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'fuzz/build.info')
-rw-r--r-- | fuzz/build.info | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/fuzz/build.info b/fuzz/build.info index c920e95dc1..82569a2910 100644 --- a/fuzz/build.info +++ b/fuzz/build.info @@ -2,41 +2,41 @@ PROGRAMS=asn1-test asn1parse-test bignum-test bndiv-test cms-test conf-test crl-test ct-test server-test x509-test SOURCE[asn1-test]=asn1.c test-corpus.c -INCLUDE[asn1-test]="{- rel2abs(catdir($builddir,"../include")) -}" ../include +INCLUDE[asn1-test]=../include DEPEND[asn1-test]=../libcrypto SOURCE[asn1parse-test]=asn1parse.c test-corpus.c -INCLUDE[asn1parse-test]="{- rel2abs(catdir($builddir,"../include")) -}" ../include +INCLUDE[asn1parse-test]=../include DEPEND[asn1parse-test]=../libcrypto SOURCE[bignum-test]=bignum.c test-corpus.c -INCLUDE[bignum-test]="{- rel2abs(catdir($builddir,"../include")) -}" ../include +INCLUDE[bignum-test]=../include DEPEND[bignum-test]=../libcrypto SOURCE[bndiv-test]=bndiv.c test-corpus.c -INCLUDE[bndiv-test]="{- rel2abs(catdir($builddir,"../include")) -}" ../include +INCLUDE[bndiv-test]=../include DEPEND[bndiv-test]=../libcrypto SOURCE[cms-test]=cms.c test-corpus.c -INCLUDE[cms-test]="{- rel2abs(catdir($builddir,"../include")) -}" ../include +INCLUDE[cms-test]=../include DEPEND[cms-test]=../libcrypto SOURCE[conf-test]=conf.c test-corpus.c -INCLUDE[conf-test]="{- rel2abs(catdir($builddir,"../include")) -}" ../include +INCLUDE[conf-test]=../include DEPEND[conf-test]=../libcrypto SOURCE[crl-test]=crl.c test-corpus.c -INCLUDE[crl-test]="{- rel2abs(catdir($builddir,"../include")) -}" ../include +INCLUDE[crl-test]=../include DEPEND[crl-test]=../libcrypto SOURCE[ct-test]=ct.c test-corpus.c -INCLUDE[ct-test]="{- rel2abs(catdir($builddir,"../include")) -}" ../include +INCLUDE[ct-test]=../include DEPEND[ct-test]=../libcrypto SOURCE[server-test]=server.c test-corpus.c -INCLUDE[server-test]="{- rel2abs(catdir($builddir,"../include")) -}" ../include +INCLUDE[server-test]=../include DEPEND[server-test]=../libcrypto ../libssl SOURCE[x509-test]=x509.c test-corpus.c -INCLUDE[x509-test]="{- rel2abs(catdir($builddir,"../include")) -}" ../include +INCLUDE[x509-test]=../include DEPEND[x509-test]=../libcrypto |