summaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap12
1 files changed, 12 insertions, 0 deletions
diff --git a/bootstrap b/bootstrap
index d5d17d4..e388420 100755
--- a/bootstrap
+++ b/bootstrap
@@ -742,6 +742,18 @@ msg "*** Gathering the list of data files to install"
{
echo -n "verbatim_data ="
find config contrib packages samples scripts -type f | LANG=C sort | while read f; do
+ case "${f}" in
+ # Skip certain files not needed at runtime (used above for generating kconfig
+ # fragments).
+ packages/*.help|packages/*.desc)
+ continue
+ ;;
+ # Special hack for configure.in.in - replace with the file that configure
+ # will produce. FIXME: create this file at the time of 'ct-ng build'.
+ config/configure.in.in)
+ f=config/configure.in
+ ;;
+ esac
echo " \\"
echo -n " ${f}"
done