diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2016-08-15 17:35:35 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2016-08-15 17:35:35 -0400 |
commit | 2bf06f756142f4c398270cdc30bbba9b9dfbd38b (patch) | |
tree | e859bb329e1cad25d89458d0ef9be233cfbfccd1 | |
parent | 3149a12166120d0b476f5ca7837ebcf0e7124703 (diff) |
Allow .so minor version numbers above 9 in .gitignore.
Needed now that libpq.so's minor version has reached 10.
-rw-r--r-- | .gitignore | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index cbf8d7996a0..4976fd9119e 100644 --- a/.gitignore +++ b/.gitignore @@ -4,9 +4,11 @@ *.so *.so.[0-9] *.so.[0-9].[0-9] +*.so.[0-9].[0-9][0-9] *.sl *.sl.[0-9] *.sl.[0-9].[0-9] +*.sl.[0-9].[0-9][0-9] *.dylib *.dll *.exp |