2006-01-05 17:09:32

by Brian Gerst

[permalink] [raw]
Subject: [PATCH] gitignore shared objects

Many arches make shared objects for VDSOs. Generally exclude them.

Signed-off-by: Brian Gerst <[email protected]>

---
commit 78a3333da041f4ec40d2fda241b7a491a69c44b7
tree 648d14cc3e86dc286b8fc9f9ffa99f213fc4e23d
parent d5b9ab9d83c4beda74115d03b9bb9bad843f9d55
author Brian Gerst <[email protected]> Thu, 05 Jan 2006 11:08:25 -0500
committer Brian Gerst <[email protected]> Thu, 05 Jan 2006 11:08:25 -0500

.gitignore | 1 +
arch/x86_64/ia32/.gitignore | 1 -
2 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/.gitignore b/.gitignore
index a4b576e..3f8fb68 100644
--- a/.gitignore
+++ b/.gitignore
@@ -10,6 +10,7 @@
*.a
*.s
*.ko
+*.so
*.mod.c

#
diff --git a/arch/x86_64/ia32/.gitignore b/arch/x86_64/ia32/.gitignore
deleted file mode 100644
index 48ab174..0000000
--- a/arch/x86_64/ia32/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-vsyscall*.so



2006-01-06 19:53:39

by Sam Ravnborg

[permalink] [raw]
Subject: Re: [PATCH] gitignore shared objects

On Thu, Jan 05, 2006 at 12:10:52PM -0500, Brian Gerst wrote:
> Many arches make shared objects for VDSOs. Generally exclude them.
>
> Signed-off-by: Brian Gerst <[email protected]>

Applied. Bonus was to kill one .gitignore in x86_64.

Sam