summaryrefslogtreecommitdiffstats
path: root/.gitignore
diff options
context:
space:
mode:
authorAnthony Sottile <asottile@umich.edu>2019-11-27 04:54:46 (GMT)
committerZachary Ware <zach@python.org>2019-11-27 04:54:46 (GMT)
commit1ef4c32c8d4f374adfea599f033fa61254bf951d (patch)
tree92425a31c460e5a1e19261ef27bad52ee412d22c /.gitignore
parent9bbcbc9f6dfe1368fe7330b117707f828e6a2c18 (diff)
downloadcpython-1ef4c32c8d4f374adfea599f033fa61254bf951d.zip
cpython-1ef4c32c8d4f374adfea599f033fa61254bf951d.tar.gz
cpython-1ef4c32c8d4f374adfea599f033fa61254bf951d.tar.bz2
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.
Diffstat (limited to '.gitignore')
-rw-r--r--.gitignore3
1 files changed, 2 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index b11f72f..8c1f8a4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,7 +6,8 @@
*.iml
*.o
*.a
-*.so*
+*.so
+*.so.*
*.dylib
*.dll
*.orig