mirror of
https://github.com/python/cpython.git
synced 2025-07-23 11:15:24 +00:00
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.
This commit is contained in:
parent
9bbcbc9f6d
commit
1ef4c32c8d
1 changed files with 2 additions and 1 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -6,7 +6,8 @@
|
|||
*.iml
|
||||
*.o
|
||||
*.a
|
||||
*.so*
|
||||
*.so
|
||||
*.so.*
|
||||
*.dylib
|
||||
*.dll
|
||||
*.orig
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue