diff options
author | Miklós Márton <martonmiklosqdev@gmail.com> | 2019-10-09 15:42:31 +0200 |
---|---|---|
committer | Brendan Forster <brendan@github.com> | 2019-10-09 10:42:31 -0300 |
commit | 475f63beb5815372181a0c93262517cd2a05214e (patch) | |
tree | 54b8d9556fab2e2484d6cf06502ac0c7e09e7375 | |
parent | b912aead4e504f5f1f3f8211f1282f0988cbe482 (diff) | |
download | gitignore-475f63beb5815372181a0c93262517cd2a05214e.tar.gz gitignore-475f63beb5815372181a0c93262517cd2a05214e.zip |
Add versioned so files extension to Qt.gitignore (#3186)
Some Qt packages builds versioned shared objects which will generate foobar.so.n symlinks to the output file. These files should not tracked by git.
-rw-r--r-- | Qt.gitignore | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Qt.gitignore b/Qt.gitignore index e57f4a5b..f147edf3 100644 --- a/Qt.gitignore +++ b/Qt.gitignore @@ -6,6 +6,7 @@ *.la *.lai *.so +*.so.* *.dll *.dylib |