From b13c83cd05b50dd439f94a0c9fb2deb5864e52ae Mon Sep 17 00:00:00 2001 From: Nils Kneuper Date: Mon, 25 Aug 2008 08:43:26 +0000 Subject: [PATCH] make sure that headers ending with .i and .ii are in the tarball, too why are those endings used anyway?!? --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 6abad7704f9..ccd9df74c89 100644 --- a/Makefile.am +++ b/Makefile.am @@ -14,7 +14,7 @@ finddatadirs=(cd $(top_srcdir) && find data fonts icons images sounds -type d \! # List non-installable utility files findnoinst=(cd $(top_srcdir) && find utils $(findfilterflags) -print ) # List all Header files -findnoinst_headers=(cd $(top_srcdir) && find src -name "*.hpp" -print && find src -name "*.h" -print ) +findnoinst_headers=(cd $(top_srcdir) && find src -name "*.hpp" -print && find src -name "*.h" -print && find src -name "*.ii" -print && find src -name "*.i" -print ) # List all files required for scons build recipe findsconscript=(cd $(top_srcdir) && find . -name "SConscript" -print ) findsconstruct=(cd $(top_srcdir) && find . -name "SConstruct" -print )