From: Anthony Sottile Date: Wed, 27 Nov 2019 04:54:46 +0000 (-0800) Subject: Be more specific about the `.so` gitignore patterns (GH-17328) X-Git-Tag: v3.9.0a2~108 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1ef4c32c8d4f374adfea599f033fa61254bf951d;p=thirdparty%2FPython%2Fcpython.git Be more specific about the `.so` gitignore patterns (GH-17328) In GH-15823 the pattern was changed from `libpython*.so*` to `*.so*` which matches a bit too greedily for some packagers. For instance this trips up `debian/README.source`. A more specific pattern fixes this issue. --- diff --git a/.gitignore b/.gitignore index b11f72f69fae..8c1f8a43075a 100644 --- a/.gitignore +++ b/.gitignore @@ -6,7 +6,8 @@ *.iml *.o *.a -*.so* +*.so +*.so.* *.dylib *.dll *.orig