From 1ef4c32c8d4f374adfea599f033fa61254bf951d Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Tue, 26 Nov 2019 20:54:46 -0800 Subject: [PATCH] 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. --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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