mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-14 04:18:11 +01:00
build: Honor --disable-foo configure flags when installing headers.
This commit is contained in:
parent
dcdea8940d
commit
e123b970c4
1 changed files with 9 additions and 3 deletions
12
Makefile.am
12
Makefile.am
|
@ -1,6 +1,12 @@
|
|||
include_HEADERS = include/libunwind-dynamic.h \
|
||||
include/libunwind-ptrace.h \
|
||||
include/libunwind-coredump.h
|
||||
include_HEADERS = include/libunwind-dynamic.h
|
||||
|
||||
if BUILD_PTRACE
|
||||
include_HEADERS += include/libunwind-ptrace.h
|
||||
endif BUILD_PTRACE
|
||||
|
||||
if BUILD_COREDUMP
|
||||
include_HEADERS += include/libunwind-coredump.h
|
||||
endif BUILD_COREDUMP
|
||||
|
||||
if ARCH_AARCH64
|
||||
include_HEADERS += include/libunwind-aarch64.h
|
||||
|
|
Loading…
Reference in a new issue