From b82a391c1fc8de626cff32853a3d8e5e68babcb9 Mon Sep 17 00:00:00 2001 From: Elis Axelsson Date: Sun, 13 May 2012 02:01:01 +0200 Subject: Reparied errors about missing directories in isolated install enviroments like sandboxes --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index b087bb1..5c47e1a 100644 --- a/Makefile +++ b/Makefile @@ -4,12 +4,12 @@ install: mkdir -p "$(DESTDIR)/usr/share/ttyponies" cp -r ponies/*.pony "$(DESTDIR)/usr/share/ponies/" cp -r ttyponies/*.pony "$(DESTDIR)/usr/share/ttyponies/" - install "ponysay" "$(DESTDIR)/usr/bin/ponysay" + install -D "ponysay" "$(DESTDIR)/usr/bin/ponysay" install -s "ponysaytruncater" "$(DESTDIR)/usr/bin/ponysaytruncater" ln -sf "ponysay" "$(DESTDIR)/usr/bin/ponythink" if [ -d "$(DESTDIR)/usr/share/zsh/site-functions/" ]; then install "completion/zsh-completion.zsh" "$(DESTDIR)/usr/share/zsh/site-functions/_ponysay"; fi mkdir -p "$(DESTDIR)/usr/share/bash-completion/completions/" - install "COPYING" "$(DESTDIR)/usr/share/licenses/ponysay/COPYING" + install -D "COPYING" "$(DESTDIR)/usr/share/licenses/ponysay/COPYING" mkdir -p "$(DESTDIR)/usr/share/bash-completion/completions/" install "completion/bash-completion.sh" "$(DESTDIR)/usr/share/bash-completion/completions/ponysay" -- cgit From e147227c1c8e86b69ee2cfa792f225954ffdc4d2 Mon Sep 17 00:00:00 2001 From: Elis Axelsson Date: Sun, 13 May 2012 02:01:17 +0200 Subject: Added rule, make clean --- Makefile | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 5c47e1a..4746c8c 100644 --- a/Makefile +++ b/Makefile @@ -22,3 +22,6 @@ uninstall: if [ -e "$(DESTDIR)/usr/share/zsh/site-functions/_ponysay" ]; then unlink "$(DESTDIR)/usr/share/zsh/site-functions/_ponysay"; fi unlink "$(DESTDIR)/usr/share/licenses/ponysay/COPYING" unlink "$(DESTDIR)/usr/share/bash-completion/completions/ponysay" + +clean: + rm -r ponysaytruncater -- cgit