summaryrefslogtreecommitdiff
path: root/Makefile.am
diff options
context:
space:
mode:
authorSergei Trofimovich <slyfox@gentoo.org>2017-11-05 13:56:42 +0000
committerSergei Trofimovich <slyfox@gentoo.org>2017-11-05 13:56:42 +0000
commitcd5e9f8b87cc387d3ffef4db81ee6af200a84183 (patch)
tree6d725d04c29d74ec95d1e7a13508fd712ba41404 /Makefile.am
parent4fdbb0578e921a9da146c2b040061a3a39fe4fda (diff)
downloadlibffi-cd5e9f8b87cc387d3ffef4db81ee6af200a84183.tar.gz
Makefile.am: add 'src/s390/internal.h' to source tarball
commit 2f530de168e0253ac06e044c832132c496e8788b ("s390: Reorganize assembly") introduced new header (similar to other arches) but did not add it to source tarball. As a result build from 'make dist' tarballs failed as: ``` ../src/s390/ffi.c:34:10: fatal error: internal.h: No such file or directory #include "internal.h" ^~~~~~~~~~~~ ``` To fix it the change adds file to 'Makefile.am'. Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index c0ce7a9..7145a6c 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -109,7 +109,7 @@ noinst_HEADERS = \
src/or1k/ffitarget.h \
src/pa/ffitarget.h \
src/powerpc/ffitarget.h src/powerpc/asm.h src/powerpc/ffi_powerpc.h \
- src/s390/ffitarget.h \
+ src/s390/ffitarget.h src/s390/internal.h \
src/sh/ffitarget.h \
src/sh64/ffitarget.h \
src/sparc/ffitarget.h src/sparc/internal.h \