[FFmpeg-cvslog] gitignore: replace library catch-all pattern by more specific patterns

Diego Biurrun git at videolan.org
Fri Apr 27 23:02:50 CEST 2012


ffmpeg | branch: master | Diego Biurrun <diego at biurrun.de> | Thu Apr 26 14:54:39 2012 +0200| [1b4f0857726967064ac504683d06c233c458228b] | committer: Diego Biurrun

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.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=1b4f0857726967064ac504683d06c233c458228b
---

 .gitignore |   11 +++++------
 1 files changed, 5 insertions(+), 6 deletions(-)

diff --git a/.gitignore b/.gitignore
index dfc1355..31a02c0 100644
--- a/.gitignore
+++ b/.gitignore
@@ -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



More information about the ffmpeg-cvslog mailing list