diff options
author | Eric Bélanger <snowmaniscool@gmail.com> | 2011-02-12 11:55:28 -0500 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2011-04-29 21:18:21 +0200 |
commit | e380f396cf4a369d560073010f4aa58314893b98 (patch) | |
tree | 0f7c414f77a3a90ed80c927ae901e978f69f33b9 /Makefile | |
parent | d187cdbc386165383bbc900a9e984c770ba2e557 (diff) | |
download | devtools32-e380f396cf4a369d560073010f4aa58314893b98.tar.xz |
Added bash_completion file
Signed-off-by: Eric Bélanger <snowmaniscool@gmail.com>
Signed-off-by: Pierre Schmitz <pierre@archlinux.de>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -57,6 +57,7 @@ install: install -m0644 ${CONFIGFILES} $(DESTDIR)/usr/share/devtools for l in ${COMMITPKG_LINKS}; do ln -sf commitpkg $(DESTDIR)/usr/bin/$$l; done for l in ${ARCHBUILD_LINKS}; do ln -sf archbuild $(DESTDIR)/usr/bin/$$l; done + install -Dm0644 bash_completion $(DESTDIR)/etc/bash_completion.d/devtools uninstall: for f in ${BINPROGS}; do rm -f $(DESTDIR)/usr/bin/$$f; done @@ -64,6 +65,7 @@ uninstall: for f in ${CONFIGFILES}; do rm -f $(DESTDIR)/usr/share/devtools/$$f; done for l in ${COMMITPKG_LINKS}; do rm -f $(DESTDIR)/usr/bin/$$l; done for l in ${ARCHBUILD_LINKS}; do rm -f $(DESTDIR)/usr/bin/$$l; done + rm $(DESTDIR)/etc/bash_completion.d/devtools dist: git archive --format=tar --prefix=devtools-$(V)/ $(V) | gzip -9 > devtools-$(V).tar.gz |