For distro build don't install options.h (conflicts with multi-arch). Fix for BUILD_DISTRO excludes with indent.

This commit is contained in:
David Garske
2016-11-29 13:29:19 -08:00
parent 13bdcc518d
commit a2dc01413c
3 changed files with 32 additions and 21 deletions

View File

@@ -16,10 +16,16 @@ nobase_include_HEADERS+= \
cyassl/certs_test.h \
cyassl/test.h \
cyassl/version.h \
cyassl/options.h \
cyassl/ocsp.h \
cyassl/crl.h
noinst_HEADERS+= \
cyassl/internal.h
# For distro build don't install options.h.
# It depends on the architecture and conflicts with Multi-Arch.
if BUILD_DISTRO
noinst_HEADERS+= cyassl/options.h
else
nobase_include_HEADERS+= cyassl/options.h
endif