[coreboot-gerrit] Patch set updated for coreboot: 7bb2f78 utils: Do not install manual pages executable

Lubomir Rintel (lkundrak@v3.sk) gerrit at coreboot.org
Fri Jan 31 20:09:02 CET 2014


Lubomir Rintel (lkundrak at v3.sk) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/5075

-gerrit

commit 7bb2f78aa5b48ba22881104ff4578f3a185ce5a8
Author: Lubomir Rintel <lkundrak at v3.sk>
Date:   Tue Jan 28 16:52:48 2014 +0000

    utils: Do not install manual pages executable
    
    This bothers rpmlint.
    
    Change-Id: I27d9cfac3ef6834ff87acc5a5ccbf332e59eeb1a
    Signed-off-by: Lubomir Rintel <lkundrak at v3.sk>
---
 util/inteltool/Makefile   | 2 +-
 util/nvramtool/Makefile   | 2 +-
 util/superiotool/Makefile | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/util/inteltool/Makefile b/util/inteltool/Makefile
index 2028a4a..6682444 100644
--- a/util/inteltool/Makefile
+++ b/util/inteltool/Makefile
@@ -82,7 +82,7 @@ install: $(PROGRAM)
 	mkdir -p $(DESTDIR)$(PREFIX)/sbin
 	$(INSTALL) $(PROGRAM) $(DESTDIR)$(PREFIX)/sbin
 	mkdir -p $(DESTDIR)$(PREFIX)/share/man/man8
-	$(INSTALL) $(PROGRAM).8 $(DESTDIR)$(PREFIX)/share/man/man8
+	$(INSTALL) -p -m644 $(PROGRAM).8 $(DESTDIR)$(PREFIX)/share/man/man8
 
 .PHONY: all clean distclean dep pciutils
 
diff --git a/util/nvramtool/Makefile b/util/nvramtool/Makefile
index b1cb27c..12f4a5c 100644
--- a/util/nvramtool/Makefile
+++ b/util/nvramtool/Makefile
@@ -66,7 +66,7 @@ install: $(PROGRAM)
 	mkdir -p $(DESTDIR)$(PREFIX)/sbin
 	$(INSTALL) $(PROGRAM) $(DESTDIR)$(PREFIX)/sbin
 	mkdir -p $(DESTDIR)$(PREFIX)/share/man/man8
-	$(INSTALL) cli/$(PROGRAM).8 $(DESTDIR)$(PREFIX)/share/man/man8
+	$(INSTALL) -p -m644 cli/$(PROGRAM).8 $(DESTDIR)$(PREFIX)/share/man/man8
 
 .PHONY: all clean distclean dep
 
diff --git a/util/superiotool/Makefile b/util/superiotool/Makefile
index 900b8ae..7ce5ede 100644
--- a/util/superiotool/Makefile
+++ b/util/superiotool/Makefile
@@ -70,7 +70,7 @@ install: $(PROGRAM)
 	mkdir -p $(DESTDIR)$(PREFIX)/sbin
 	$(INSTALL) $(PROGRAM) $(DESTDIR)$(PREFIX)/sbin
 	mkdir -p $(DESTDIR)$(PREFIX)/share/man/man8
-	$(INSTALL) $(PROGRAM).8 $(DESTDIR)$(PREFIX)/share/man/man8
+	$(INSTALL) -p -m644 $(PROGRAM).8 $(DESTDIR)$(PREFIX)/share/man/man8
 
 clean:
 	rm -f $(PROGRAM) *.o



More information about the coreboot-gerrit mailing list