diff options
author | Alexey Neyman <stilor@att.net> | 2018-03-17 14:44:05 -0700 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2018-04-07 12:03:17 -0700 |
commit | 35b830b55233bd932f0bcb32aff04abb1d9b3c75 (patch) | |
tree | 4f1c6b2a6815572804fcf796985772ac00c568f8 /bootstrap | |
parent | 9dc94f36627ec79721e485bb4ae50af9fb67c9fc (diff) | |
download | crosstool-ng-35b830b55233bd932f0bcb32aff04abb1d9b3c75.tar.gz crosstool-ng-35b830b55233bd932f0bcb32aff04abb1d9b3c75.tar.bz2 crosstool-ng-35b830b55233bd932f0bcb32aff04abb1d9b3c75.zip |
Ignore/modify the list of installed files to match
what was installed before.
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -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 |