diff options
author | Alexey Neyman <stilor@att.net> | 2018-03-17 22:19:45 -0700 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2018-04-07 12:03:17 -0700 |
commit | bc542408ca3c74e977e4f30d77ae6b9a6f388cbe (patch) | |
tree | 83bb0cdff34f5c053a1870c3612bedfbba423e15 /bootstrap | |
parent | 5159cd7bc070a4fbf013e6c8c259ccb8ef391b0d (diff) | |
download | crosstool-ng-bc542408ca3c74e977e4f30d77ae6b9a6f388cbe.tar.gz crosstool-ng-bc542408ca3c74e977e4f30d77ae6b9a6f388cbe.tar.bz2 crosstool-ng-bc542408ca3c74e977e4f30d77ae6b9a6f388cbe.zip |
config.sub/config.guess must either be executable
or be run through shell
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -743,10 +743,15 @@ msg "*** Gathering the list of data files to install" declare -A seen_files echo -n "verbatim_data =" find config contrib packages samples scripts -type f | LANG=C sort | while read f; do + # Implement some kind of .installignore for these files? case "${f}" in # Skip certain files not needed at runtime (used above for generating kconfig # fragments). - packages/*.help|packages/*.desc) + packages/*.help | packages/*.desc) + continue + ;; + # And, some file automake insists we must have + scripts/compile | scripts/missing | scripts/depcomp | scripts/ltmain.sh | scripts/install-sh) continue ;; # Special hack for configure.in.in - replace with the file that configure |