Skip to content

Commit d2f272c

Browse files
committed
installer/portable: exclude git-cvsserver
It was pointed out that cvsserver may not be useful a command in Git for Windows because git-shell is already excluded. And a quick test shows that cvsserver does not even work right now: $ git cvsserver Can't locate DBI.pm in @inc (you may need to install the DBI module) (@inc contains: /mingw64/share/perl5/site_perl /usr/lib/perl5/site_perl /usr/share/perl5/site_perl /usr/lib/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib/perl5/core_perl /usr/share/perl5/core_perl .) at C:\Program Files\Git\mingw64/libexec/git-core\git-cvsserver line 3590. BEGIN failed--compilation aborted at C:\Program Files\Git\mingw64/libexec/git-core\git-cvsserver line 3590. The absence of complaints about this indicate very strongly that there are no current users, anyway. So let's just remove it from the installer and portable Git. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 47ec67b commit d2f272c

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
@@ -109,6 +109,7 @@ grep -v -e '\.[acho]$' -e '\.l[ao]$' -e '/aclocal/' \
109109
-e '^/mingw../bin/lib\(asprintf\|gettext\|gnutlsxx\|pcre[0-9a-z]\|quadmath\|stdc++\)[^/]*\.dll$' \
110110
-e '^/mingw../bin/\(asn1\|gnutls\|idn\|mini\|msg\|nettle\|ngettext\|ocsp\|pcre\|rtmp\|xgettext\)[^/]*\.exe$' \
111111
-e '^/mingw../.*/git-\(remote-testsvn\|shell\)\.exe$' \
112+
-e '^/mingw../.*/git-cvsserver.*$' \
112113
-e '^/mingw../lib/tdbc' \
113114
-e '^/mingw../share/git\(k\|-gui\)/lib/msgs/' \
114115
-e '^/mingw../share/nghttp2/' \
@@ -137,7 +138,7 @@ else
137138
-e '^/git-\(bash\|cmd\)\.exe$' \
138139
-e '^/mingw../bin/\(certtool\.exe\|create-shortcut\.exe\)$' \
139140
-e '^/mingw../bin/\(curl\.exe\|envsubst\.exe\|gettext\.exe\)$' \
140-
-e '^/mingw../bin/\(gettext\.sh\|gettextize\|git-cvsserver\)$' \
141+
-e '^/mingw../bin/\(gettext\.sh\|gettextize\)$' \
141142
-e '^/mingw../bin/\(gitk\|git-upload-archive\.exe\)$' \
142143
-e '^/mingw../bin/lib\(atomic\|charset\)-.*\.dll$' \
143144
-e '^/mingw../bin/lib\(gcc_s_seh\|gmpxx\)-.*\.dll$' \

0 commit comments

Comments
 (0)