diff options
author | Anthony Sottile <asottile@umich.edu> | 2019-11-27 04:54:46 (GMT) |
---|---|---|
committer | Zachary Ware <zach@python.org> | 2019-11-27 04:54:46 (GMT) |
commit | 1ef4c32c8d4f374adfea599f033fa61254bf951d (patch) | |
tree | 92425a31c460e5a1e19261ef27bad52ee412d22c /.gitignore | |
parent | 9bbcbc9f6dfe1368fe7330b117707f828e6a2c18 (diff) | |
download | cpython-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-- | .gitignore | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -6,7 +6,8 @@ *.iml *.o *.a -*.so* +*.so +*.so.* *.dylib *.dll *.orig |