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: Fri, 02 Mar 2018 18:07:01
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: https://gitweb.gentoo.org/proj/gentoo-bashcomp.git/commit/?id=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 Makefile | 9 ---------
14 1 file changed, 9 deletions(-)
15
16 diff --git a/Makefile b/Makefile
17 index e8f87cd..da4702b 100644
18 --- a/Makefile
19 +++ b/Makefile
20 @@ -5,18 +5,9 @@ distapp = gentoo-bashcomp
21 distver := $(shell date -u +%Y%m%d)
22 distpkg := $(distapp)-$(distver)
23
24 -PREFIX = /usr
25 -
26 all:
27 @echo Nothing to compile.
28
29 -install:
30 - install -d "$(DESTDIR)$(PREFIX)/share/bash-completion"
31 - install -m0644 gentoo "$(DESTDIR)$(PREFIX)/share/bash-completion"
32 - install -d "$(DESTDIR)/etc/bash_completion.d"
33 - ln -snf "../..$(PREFIX)/share/bash-completion/gentoo" \
34 - "$(DESTDIR)/etc/bash_completion.d/gentoo"
35 -
36 tag:
37 git pull
38 git tag -a $(distpkg) -m "tag $(distpkg)"