summaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authorAlexey Neyman <stilor@att.net>2019-01-28 06:55:41 (GMT)
committerAlexey Neyman <stilor@att.net>2019-01-28 06:55:41 (GMT)
commitea07954745a5c81dcf429de105652c898ad17452 (patch)
treebc8c69ac845990dc3a88cbaf7897b5219d7df0b6 /bootstrap
parentadc16046f769fdf27db9b533260609fe675d8c6b (diff)
Ignore vim swap files while generating the file list
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap4
1 files changed, 4 insertions, 0 deletions
diff --git a/bootstrap b/bootstrap
index f7b9b41..c7d01ba 100755
--- a/bootstrap
+++ b/bootstrap
@@ -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