diff options
author | Michał Górny <mgorny@gentoo.org> | 2014-08-31 20:42:59 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2014-08-31 20:42:59 +0200 |
commit | 83db19445f037ff9385f80ae7f9ed787bfc55262 (patch) | |
tree | c3df91ade42152560d42699d4b868bcb163739e0 | |
parent | Style and performance improvements based on suggestions by Steven J. Long. (diff) | |
download | gentoo-bashcomp-83db19445f037ff9385f80ae7f9ed787bfc55262.tar.gz gentoo-bashcomp-83db19445f037ff9385f80ae7f9ed787bfc55262.tar.bz2 gentoo-bashcomp-83db19445f037ff9385f80ae7f9ed787bfc55262.zip |
Makefile: remove the outdated install target temporarily.
It is just wrong, so there is no point in keeping it for now. I will
write new rules after refactoring the code.
-rw-r--r-- | Makefile | 9 |
1 files changed, 0 insertions, 9 deletions
@@ -5,18 +5,9 @@ distapp = gentoo-bashcomp distver := $(shell date -u +%Y%m%d) distpkg := $(distapp)-$(distver) -PREFIX = /usr - all: @echo Nothing to compile. -install: - install -d "$(DESTDIR)$(PREFIX)/share/bash-completion" - install -m0644 gentoo "$(DESTDIR)$(PREFIX)/share/bash-completion" - install -d "$(DESTDIR)/etc/bash_completion.d" - ln -snf "../..$(PREFIX)/share/bash-completion/gentoo" \ - "$(DESTDIR)/etc/bash_completion.d/gentoo" - tag: git pull git tag -a $(distpkg) -m "tag $(distpkg)" |