fix multiple issues. Revert one of the checks which breaks processing of PE binaries. Removed the 'Group' line, not needed with modern Fedora/RPM.
45 lines
840 B
Diff
45 lines
840 B
Diff
From 102c8319f84bd8f0af5855365f36d58b1e94d556 Mon Sep 17 00:00:00 2001
|
|
From: "Richard W.M. Jones" <rjones@redhat.com>
|
|
Date: Thu, 9 Mar 2017 12:13:44 +0000
|
|
Subject: [PATCH 03/26] gitignore: Ignore most generated files.
|
|
|
|
Ignore most of the generated files in a git checkout.
|
|
|
|
Signed-off-by: Richard W.M. Jones <rjones@redhat.com>
|
|
---
|
|
.gitignore | 14 ++++++++++++++
|
|
1 file changed, 14 insertions(+)
|
|
|
|
diff --git a/.gitignore b/.gitignore
|
|
index e4c8e1f..0067f39 100644
|
|
--- a/.gitignore
|
|
+++ b/.gitignore
|
|
@@ -1,9 +1,23 @@
|
|
*~
|
|
+*.o
|
|
+*.a
|
|
|
|
+.deps
|
|
+Makefile
|
|
Makefile.in
|
|
|
|
/aclocal.m4
|
|
/autom4te.cache
|
|
+/config.h
|
|
/config.h.in
|
|
+/config.log
|
|
+/config.status
|
|
/configure
|
|
+/extresso/extresso
|
|
+/extresso/genresscript
|
|
+/icotool/icotool
|
|
+/icoutils.spec
|
|
/mkinstalldirs
|
|
+/po/POTFILES
|
|
+/stamp-h1
|
|
+/wrestool/wrestool
|
|
\ No newline at end of file
|
|
--
|
|
2.10.2
|
|
|