]> git.droids-corp.org - dpdk.git/commitdiff
git: ignore more build directories
authorThomas Monjalon <thomas@monjalon.net>
Sat, 14 Sep 2019 15:05:09 +0000 (17:05 +0200)
committerThomas Monjalon <thomas@monjalon.net>
Wed, 27 Nov 2019 22:16:27 +0000 (23:16 +0100)
Build directories commonly have compiler in their names.
In order to filter build directories not starting with "build-"
(common with make), patterns for gcc and clang are added to .gitignore.

Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
Acked-by: David Marchand <david.marchand@redhat.com>
.gitignore

index 5eda2c31ec880531cd1367d46c1679ad894c2700..9741ba07697475f9c938fbfbdecc954372a7a14e 100644 (file)
@@ -27,3 +27,6 @@ TAGS
 # ignore default build directory, and directories from test-meson-builds.sh
 build
 build-*
+# ignore other build directory patterns
+*-gcc*
+*-clang*