gptfdisk-1.0.9-convenience-1.patch (1177B)
1 Submitted By: Bruce Dubbs <bdubbs_at_linuxfromscratch_dot_org> 2 Date: 2015-10-19 3 Initial Package Version: 1.0.1 4 Upstream Status: None. BLFS specific. 5 Origin: BLFS 6 Description: Updates Makefile enabling parameter passing. 7 Rediffed for version 1.0.1 8 Updates: Rediffed for version 1.0.3 (P. Labastie) 9 Patch version 2 for version 1.0.3: Removed ICU 10 and POPT switches, keeping only the 11 install target (P. Labastie) 12 13 diff -Naur gptfdisk-1.0.3.old/Makefile gptfdisk-1.0.3.new/Makefile 14 --- gptfdisk-1.0.3.old/Makefile 2017-07-28 03:41:20.000000000 +0200 15 +++ gptfdisk-1.0.3.new/Makefile 2018-04-20 10:04:18.896802047 +0200 16 @@ -37,6 +37,11 @@ 17 clean: #no pre-reqs 18 rm -f core *.o *~ gdisk sgdisk cgdisk fixparts 19 20 +install: gdisk cgdisk sgdisk fixparts 21 + install -dm 755 $(DESTDIR)/sbin $(DESTDIR)/usr/share/man/man8 22 + install -m755 gdisk cgdisk sgdisk fixparts $(DESTDIR)/sbin 23 + install -m644 *.8 $(DESTDIR)/usr/share/man/man8 24 + 25 # what are the source dependencies 26 depend: $(SRCS) 27 $(DEPEND) $(SRCS)