make sure that headers ending with .i and .ii are in the tarball, too

why are those endings used anyway?!?
This commit is contained in:
Nils Kneuper 2008-08-25 08:43:26 +00:00
parent dc72300a84
commit b13c83cd05

View file

@ -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 )