diff options
author | Alexey Neyman <stilor@att.net> | 2019-01-27 22:55:41 -0800 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2019-01-27 22:55:41 -0800 |
commit | ea07954745a5c81dcf429de105652c898ad17452 (patch) | |
tree | bc8c69ac845990dc3a88cbaf7897b5219d7df0b6 /bootstrap | |
parent | adc16046f769fdf27db9b533260609fe675d8c6b (diff) | |
download | crosstool-ng-ea07954745a5c81dcf429de105652c898ad17452.tar.gz crosstool-ng-ea07954745a5c81dcf429de105652c898ad17452.tar.bz2 crosstool-ng-ea07954745a5c81dcf429de105652c898ad17452.zip |
Ignore vim swap files while generating the file list
Signed-off-by: Alexey Neyman <stilor@att.net>
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 |