From 625ecf1f1257810d3496d143c3016e051269294d Mon Sep 17 00:00:00 2001 From: Trent Piepho Date: Wed, 3 Oct 2007 14:22:58 -0700 Subject: build: update .hgignore file From: Trent Piepho .hgignore uses regexs, not filename globs. Most needed a '$' at the end, so something like v4l/Kconfig (ignored) didn't match v4l/Kconfig.sound (not ignored). Adjust "v4l/.*\.h" do it doesn't ignore v4l/compat.h and v4l/i2c-compat.h. Ignore .patch and .diff files. Combine some .o and .a regexs. Add new regexs for new test and util binaries. Signed-off-by: Trent Piepho --- .hgignore | 87 +++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 43 insertions(+), 44 deletions(-) diff --git a/.hgignore b/.hgignore index adb81cc31..648b88eb7 100644 --- a/.hgignore +++ b/.hgignore @@ -1,48 +1,47 @@ .pc -.*[\.]rej -.*[\.]orig -.*[\~] +\.rej$ +\.orig$ +~$ +\.[oad]$ +\.diff$ +\.patch$ patches/ -v4l/.version -v4l/.tmp_versions/.* -v4l/[^/]*[\.]c -v4l/[^/]*[\.]h -v4l/.*[\.]o -v4l/.*[\.]ko -v4l/.kconfig.d -v4l/.tmpconfig.h -v4l/Kconfig -v4l/Kconfig.kern -v4l/Makefile.media +v4l/.version$ +v4l/.tmp_versions/ +v4l/[^/]*\.c$ +v4l/[^/]+(?