Skip to content

Commit

Permalink
gitignore: replace library catch-all pattern by more specific patterns
Browse files Browse the repository at this point in the history
Ignoring all files that start with the name of a library matches some
files that are not generated.  So replace libfoo/libfoo* with patterns
for static and shared libraries, pkg-config and version files.
  • Loading branch information
DonDiego committed Apr 27, 2012
1 parent 0a07f2b commit 1b4f085
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
.config
.version
*.a
*.o
*.d
*.exe
*.ho
*.pc
*.so
*.so.*
*.ver
*-example
*-test
config.*
Expand All @@ -21,13 +26,7 @@ doc/print_options
libavcodec/*_tablegen
libavcodec/*_tables.c
libavcodec/*_tables.h
libavcodec/libavcodec*
libavdevice/libavdevice*
libavfilter/libavfilter*
libavformat/libavformat*
libavutil/avconfig.h
libavutil/libavutil*
libswscale/libswscale*
tests/audiogen
tests/base64
tests/data
Expand Down

0 comments on commit 1b4f085

Please sign in to comment.