diff options
author | Alexey Neyman <stilor@att.net> | 2019-02-06 22:46:14 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-06 22:46:14 -0800 |
commit | 5aed6ab6e216add471954fdd84a85d9c4e780d05 (patch) | |
tree | f57a1fc495d034e04f4ca128fb1e7c3215b4c18e /bootstrap | |
parent | e550d2c2358ba677380a5b56ce3425a921c272a0 (diff) | |
parent | cad2a775dc96e9fb2b435f154a8fa29ed5427ba0 (diff) | |
download | crosstool-ng-5aed6ab6e216add471954fdd84a85d9c4e780d05.tar.gz crosstool-ng-5aed6ab6e216add471954fdd84a85d9c4e780d05.tar.bz2 crosstool-ng-5aed6ab6e216add471954fdd84a85d9c4e780d05.zip |
Merge pull request #1134 from stilor/upgrading
Upgrade script + test suite
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -779,6 +779,10 @@ msg "*** Gathering the list of data files to install" find COPYING config contrib licenses.d packages samples scripts -type f | LANG=C sort | while read f; do # Implement some kind of .installignore for these files? case "${f}" in + # Avoid temp files + .*.swp|.*.swo) + continue + ;; # And, some files automake insists we must have scripts/compile | scripts/missing | scripts/depcomp | scripts/ltmain.sh | scripts/install-sh) continue |