Gentoo Archives: gentoo-commits

From: "Mike Gilbert (floppym)" <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-src commit in build-docbook-catalog: Makefile
Date: Tue, 02 Oct 2012 23:06:47
Message-Id: 20121002230628.E17C521600@flycatcher.gentoo.org
1 floppym 12/10/02 23:06:28
2
3 Modified: Makefile
4 Log:
5 Don't install /etc/xml/.keep. Bug 437004.
6
7 Revision Changes Path
8 1.2 build-docbook-catalog/Makefile
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-src/build-docbook-catalog/Makefile?rev=1.2&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-src/build-docbook-catalog/Makefile?rev=1.2&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-src/build-docbook-catalog/Makefile?r1=1.1&r2=1.2
13
14 Index: Makefile
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-src/build-docbook-catalog/Makefile,v
17 retrieving revision 1.1
18 retrieving revision 1.2
19 diff -u -r1.1 -r1.2
20 --- Makefile 27 Mar 2012 22:36:21 -0000 1.1
21 +++ Makefile 2 Oct 2012 23:06:28 -0000 1.2
22 @@ -10,15 +10,14 @@
23 SBINDIR = $(PREFIX)/sbin
24
25 install:
26 - mkdir -p $(DESTDIR)$(CONFDIR) $(DESTDIR)$(SBINDIR)
27 - touch $(DESTDIR)$(CONFDIR)/.keep
28 + install -d $(DESTDIR)$(SBINDIR)
29 install -m 755 build-docbook-catalog $(DESTDIR)$(SBINDIR)
30
31 dist:
32 rm -rf $(P)
33 mkdir -p $(P)
34 cp -pPR build-docbook-catalog Makefile README $(P)/
35 - tar cf - $(P) | xz -9 > $(P).tar.xz
36 + tar --posix --owner 0 --group 0 -cf - $(P) | xz -9 > $(P).tar.xz
37 rm -rf $(P)
38
39 .PHONY: all clean dist install