make: adjust for new vendor/lzma-sdk location

This commit is contained in:
Markus F.X.J. Oberhumer
2022-08-17 15:05:56 +02:00
parent 61e1366122
commit 3c47898cf4
3 changed files with 5 additions and 3 deletions
+1
View File
@@ -11,6 +11,7 @@ find . \
-type d -name '.hg' -prune -o \
-type d -name 'build*' -prune -o \
-type d -name 'tmp*' -prune -o \
-type d -name 'vendor' -prune -o \
-type f -iname '*.bat' -prune -o \
-type f -iname '*.exe' -prune -o \
-type f -iname '*.o' -prune -o \
+1
View File
@@ -10,6 +10,7 @@ set -e; set -o pipefail
git ls-files --full-name -z | perl -0 -n -e '
s,^,./,;
if (m,^\./src/lzma-sdk(\0|$),) { }
if (m,^\./vendor/,) { }
elsif (m,\.bat(\0|$),) { }
elsif (m,\.exe(\0|$),) { }
else { print; }