diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-04-26 14:54:39 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-04-27 13:01:11 +0200 |
commit | 1b4f0857726967064ac504683d06c233c458228b (patch) | |
tree | 746fb44c0a5957780844b384f339344b014b5374 /.gitignore | |
parent | 0a07f2b346433a9a2677c69c6b29a1a827e39109 (diff) | |
download | ffmpeg-streaming-1b4f0857726967064ac504683d06c233c458228b.zip ffmpeg-streaming-1b4f0857726967064ac504683d06c233c458228b.tar.gz |
gitignore: replace library catch-all pattern by more specific patterns
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.
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 11 |
1 files changed, 5 insertions, 6 deletions
@@ -1,9 +1,14 @@ .config .version +*.a *.o *.d *.exe *.ho +*.pc +*.so +*.so.* +*.ver *-example *-test config.* @@ -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 |