Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gentoo-bashcomp:master commit in: /
Date: Sun, 31 Aug 2014 21:19:11
Message-Id: 1409510579.83db19445f037ff9385f80ae7f9ed787bfc55262.mgorny@gentoo
1 commit: 83db19445f037ff9385f80ae7f9ed787bfc55262
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 31 18:42:59 2014 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 31 18:42:59 2014 +0000
6 URL: http://sources.gentoo.org/gitweb/?p=proj/gentoo-bashcomp.git;a=commit;h=83db1944
7
8 Makefile: remove the outdated install target temporarily.
9
10 It is just wrong, so there is no point in keeping it for now. I will
11 write new rules after refactoring the code.
12
13 ---
14 Makefile | 9 ---------
15 1 file changed, 9 deletions(-)
16
17 diff --git a/Makefile b/Makefile
18 index e8f87cd..da4702b 100644
19 --- a/Makefile
20 +++ b/Makefile
21 @@ -5,18 +5,9 @@ distapp = gentoo-bashcomp
22 distver := $(shell date -u +%Y%m%d)
23 distpkg := $(distapp)-$(distver)
24
25 -PREFIX = /usr
26 -
27 all:
28 @echo Nothing to compile.
29
30 -install:
31 - install -d "$(DESTDIR)$(PREFIX)/share/bash-completion"
32 - install -m0644 gentoo "$(DESTDIR)$(PREFIX)/share/bash-completion"
33 - install -d "$(DESTDIR)/etc/bash_completion.d"
34 - ln -snf "../..$(PREFIX)/share/bash-completion/gentoo" \
35 - "$(DESTDIR)/etc/bash_completion.d/gentoo"
36 -
37 tag:
38 git pull
39 git tag -a $(distpkg) -m "tag $(distpkg)"