mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-18 20:37:56 +00:00
Ignore/modify the list of installed files to match
what was installed before. Signed-off-by: Alexey Neyman <stilor@att.net>
This commit is contained in:
parent
9dc94f3662
commit
35b830b552
12
bootstrap
12
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
|
||||
|
Loading…
Reference in New Issue
Block a user