Merge pull request #1423 from ejohnstown/touch-file

Fix issue with the creation of dummy fips.h header.
This commit is contained in:
David Garske 2018-03-06 16:29:05 -08:00 committed by GitHub
commit 602874cff4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -20,7 +20,6 @@ nobase_include_HEADERS+= \
wolfssl/wolfcrypt/fe_operations.h \ wolfssl/wolfcrypt/fe_operations.h \
wolfssl/wolfcrypt/ge_operations.h \ wolfssl/wolfcrypt/ge_operations.h \
wolfssl/wolfcrypt/error-crypt.h \ wolfssl/wolfcrypt/error-crypt.h \
wolfssl/wolfcrypt/fips.h \
wolfssl/wolfcrypt/fips_test.h \ wolfssl/wolfcrypt/fips_test.h \
wolfssl/wolfcrypt/hash.h \ wolfssl/wolfcrypt/hash.h \
wolfssl/wolfcrypt/hc128.h \ wolfssl/wolfcrypt/hc128.h \
@ -99,3 +98,7 @@ if BUILD_SELFTEST
nobase_include_HEADERS+= wolfssl/wolfcrypt/selftest.h nobase_include_HEADERS+= wolfssl/wolfcrypt/selftest.h
endif endif
if BUILD_FIPS_V2
nobase_include_HEADERS+= wolfssl/wolfcrypt/fips.h
endif