From 71421456a1694200380fbb5f2e74a403f6a3cb17 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Wed, 28 Nov 2012 19:50:40 -0500 Subject: Burning out I guess; really fix Makefile --- Makefile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 062bcca..1a731e8 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -V=20121128.3 +V=20121128.4 PREFIX = /usr/local @@ -8,7 +8,8 @@ BINPROGS = \ finddeps \ lddd -SBINPROGS= +SBINPROGS = \ + mkarchroot SHAREFILES = \ lib/common.sh @@ -34,9 +35,9 @@ install: install -m0755 ${BINPROGS} $(DESTDIR)$(PREFIX)/bin # install -m0755 ${SBINPROGS} $(DESTDIR)$(PREFIX)/sbin + install -m0755 mkarchroot $(DESTDIR)$(PREFIX)/sbin/archroot install -m0644 ${SHAREFILES} $(DESTDIR)$(PREFIX)/share/devtools - install -m0755 mkarchroot $(DESTDIR)$(PREFIX)/sbin/archroot ln -sf find-libdeps $(DESTDIR)$(PREFIX)/bin/find-libprovides install -Dm0644 bash_completion $(DESTDIR)$(PREFIX)/share/bash-completion/completions/devtools @@ -45,10 +46,10 @@ install: uninstall: for f in ${BINPROGS} ; do rm -f $(DESTDIR)$(PREFIX)/bin/$$f; done # for f in ${SBINPROGS} ; do rm -f $(DESTDIR)$(PREFIX)/sbin/$$f; done + rm -f $(DESTDIR)$(PREFIX)/sbin/archroot for f in ${SHAREFILES}; do rm -f $(DESTDIR)$(PREFIX)/share/devtools/$${f##*/}; done rm -f $(DESTDIR)$(PREFIX)/bin/find-libprovides - rm -f $(DESTDIR)$(PREFIX)/sbin/archroot rm -f $(DESTDIR)$(PREFIX)/share/bash-completion/completions/devtools rm -f $(DESTDIR)$(PREFIX)/share/zsh/site-functions/_devtools -- cgit v1.2.3