mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-18 20:37:56 +00:00
Ignore vim swap files while generating the file list
Signed-off-by: Alexey Neyman <stilor@att.net>
This commit is contained in:
parent
adc16046f7
commit
ea07954745
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user