90e6999a07
- Update to the stuff in master to fix the issue at: https://bodhi.fedoraproject.org/updates/FEDORA-2020-050993b283#comment-1208958 - Update to 3.0.11 (via patches generated from git) - Plus newer upstream fixes (also via patches generated from git) - Fix shell exit failures in make - Fix .reloc section generation - Fix CHAR8 definition - Fix "make DESTDIR=..." - Change the installed .a/.o layout - Provide makefiles for consumers to use. - Make the -devel noarch since it's just headers. - Add a bunch of compatibility symlinks for our older packages. These will go away once we've migrated everything using them in fedora to use the newer make system... Signed-off-by: Peter Jones <pjones@redhat.com>
43 lines
763 B
Diff
43 lines
763 B
Diff
From 68c9d9ba4edbb33f04900f9021f1bcf83cef223d Mon Sep 17 00:00:00 2001
|
|
From: Peter Jones <pjones@redhat.com>
|
|
Date: Wed, 15 Jan 2020 13:07:49 -0500
|
|
Subject: [PATCH 44/46] Fix the arch subdirs in .gitignore.
|
|
|
|
Currently they'll exclude e.g. inc/x64/ by accident; this makes it only
|
|
apply to the top level.
|
|
|
|
Also adds vim temp files to the ignore list.
|
|
|
|
Signed-off-by: Peter Jones <pjones@redhat.com>
|
|
---
|
|
.gitignore | 13 +++++++------
|
|
1 file changed, 7 insertions(+), 6 deletions(-)
|
|
|
|
diff --git a/.gitignore b/.gitignore
|
|
index 014f7d02f46..3e96a65bb43 100644
|
|
--- a/.gitignore
|
|
+++ b/.gitignore
|
|
@@ -1,12 +1,13 @@
|
|
+.*.sw?
|
|
*.efi
|
|
*.efi.debug
|
|
*.o
|
|
*.a
|
|
*.tar.*
|
|
*.tar
|
|
-aa64
|
|
-arm
|
|
-ia32
|
|
-ia64
|
|
-mips64el
|
|
-x64
|
|
+/aa64/
|
|
+/arm/
|
|
+/ia32/
|
|
+/ia64/
|
|
+/mips64el/
|
|
+/x64/
|
|
--
|
|
2.24.1
|
|
|