fix multiple issues. Revert one of the checks which breaks processing of PE binaries. Removed the 'Group' line, not needed with modern Fedora/RPM.
42 lines
847 B
Diff
42 lines
847 B
Diff
From a1ba8e23856b980a7bdbd35e955a7d7bb12106be Mon Sep 17 00:00:00 2001
|
|
From: "Richard W.M. Jones" <rjones@redhat.com>
|
|
Date: Thu, 9 Mar 2017 12:11:27 +0000
|
|
Subject: [PATCH 02/26] gitignore: Use git's pattern matching to make this
|
|
simpler.
|
|
|
|
This makes no semantic change to the gitignore file.
|
|
|
|
Signed-off-by: Richard W.M. Jones <rjones@redhat.com>
|
|
---
|
|
.gitignore | 19 ++++++++-----------
|
|
1 file changed, 8 insertions(+), 11 deletions(-)
|
|
|
|
diff --git a/.gitignore b/.gitignore
|
|
index 435d1ba..e4c8e1f 100644
|
|
--- a/.gitignore
|
|
+++ b/.gitignore
|
|
@@ -1,12 +1,9 @@
|
|
-aclocal.m4
|
|
-autom4te.cache/
|
|
-common/Makefile.in
|
|
-config.h.in
|
|
-config.h.in~
|
|
-configure
|
|
-extresso/Makefile.in
|
|
-icotool/Makefile.in
|
|
-lib/Makefile.in
|
|
-wrestool/Makefile.in
|
|
+*~
|
|
+
|
|
Makefile.in
|
|
-mkinstalldirs
|
|
+
|
|
+/aclocal.m4
|
|
+/autom4te.cache
|
|
+/config.h.in
|
|
+/configure
|
|
+/mkinstalldirs
|
|
--
|
|
2.10.2
|
|
|