Skip to content

Commit 379d20b

Browse files
committed
make-file-list.sh: exclude a SASL helper
The `sasldblistusers2` tool wants to list users in sasldb, however, we do not ship with db, therefore that tool would not have worked, if any user had ever tried to run it for whatever reason. This means that that executable is dead weight, and we're better off not even including it in Git for Windows. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent ec92b82 commit 379d20b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

make-file-list.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,8 @@ grep -v -e '\.[acho]$' -e '\.l[ao]$' -e '/aclocal/' \
166166
-e '^/usr/bin/msys-\(db\|icu\|gfortran\|stdc++\|quadmath\)[^/]*\.dll$' \
167167
-e '^/usr/bin/msys-\(gmpxx\|gnutlsxx\|xml2\|xslt\|exslt\)-.*\.dll$' \
168168
-e '^/usr/bin/msys-svn_swig_\(py\|ruby\)-.*\.dll$' \
169-
-e '^/usr/bin/dumper\.exe$' \
169+
-e '^/usr/bin/\(dumper\|sasl.*\)\.exe$' \
170+
-e '^/usr/lib/sasl2/msys-sasldb-.*\.dll$' \
170171
-e '^/usr/share.*/magic$' \
171172
-e '^/usr/share/perl5/core_perl/Unicode/' \
172173
-e '^/usr/share/perl5/core_perl/pods/' \

0 commit comments

Comments
 (0)