From e380f396cf4a369d560073010f4aa58314893b98 Mon Sep 17 00:00:00 2001 From: Eric Bélanger Date: Sat, 12 Feb 2011 11:55:28 -0500 Subject: Added bash_completion file MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Eric Bélanger Signed-off-by: Pierre Schmitz --- Makefile | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index e74308a..5287209 100644 --- a/Makefile +++ b/Makefile @@ -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 -- cgit v1.2.3-24-g4f1b