From 9b2e85c10d3dc7ad1142b95e49aeb4d8e6757b02 Mon Sep 17 00:00:00 2001 From: Erkin Batu Altunbaş Date: Wed, 11 Jul 2012 18:49:45 +0300 Subject: A binary executable isn't a directory. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index e9c3279..502f1b4 100644 --- a/Makefile +++ b/Makefile @@ -41,4 +41,4 @@ uninstall: unlink "$(DESTDIR)/usr/share/man/man1/ponythink.1" clean: - rm -r "ponysaytruncater" + rm "ponysaytruncater" -- cgit From fc3d2d660a95244f11fa7bbb9a004a13e7f3cda0 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Thu, 12 Jul 2012 16:59:18 +0300 Subject: The manpage is currently in section 6, not section 1 (issue #22 is open) --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 502f1b4..ca6a5e1 100644 --- a/Makefile +++ b/Makefile @@ -25,8 +25,8 @@ install: all install "COPYING" "$(DESTDIR)/usr/share/licenses/ponysay/COPYING" mkdir -p "$(DESTDIR)/usr/share/man/man1" - install "manpage.1" "$(DESTDIR)/usr/share/man/man1/ponysay.1" - ln -sf "ponysay.1" "$(DESTDIR)/usr/share/man/man1/ponythink.1" + install "manpage.6" "$(DESTDIR)/usr/share/man/man1/ponysay.6" + ln -sf "ponysay.6" "$(DESTDIR)/usr/share/man/man1/ponythink.6" uninstall: rm -fr "$(DESTDIR)/usr/share/ponysay/ponies" @@ -37,8 +37,8 @@ uninstall: unlink "$(DESTDIR)/usr/share/zsh/site-functions/_ponysay"; unlink "$(DESTDIR)/usr/share/licenses/ponysay/COPYING" unlink "$(DESTDIR)/usr/share/bash-completion/completions/ponysay" - unlink "$(DESTDIR)/usr/share/man/man1/ponysay.1" - unlink "$(DESTDIR)/usr/share/man/man1/ponythink.1" + unlink "$(DESTDIR)/usr/share/man/man1/ponysay.6" + unlink "$(DESTDIR)/usr/share/man/man1/ponythink.6" clean: rm "ponysaytruncater" -- cgit From 3347fa84c3dbab2b40ef683df2d7a57d548db2cc Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Thu, 12 Jul 2012 16:59:47 +0300 Subject: missed one line --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index ca6a5e1..079092e 100644 --- a/Makefile +++ b/Makefile @@ -24,7 +24,7 @@ install: all mkdir -p "$(DESTDIR)/usr/share/licenses/ponysay/" install "COPYING" "$(DESTDIR)/usr/share/licenses/ponysay/COPYING" - mkdir -p "$(DESTDIR)/usr/share/man/man1" + mkdir -p "$(DESTDIR)/usr/share/man/man6" install "manpage.6" "$(DESTDIR)/usr/share/man/man1/ponysay.6" ln -sf "ponysay.6" "$(DESTDIR)/usr/share/man/man1/ponythink.6" -- cgit From 9f4f748cf95407ba9fd4d8a8c347d735fab1416e Mon Sep 17 00:00:00 2001 From: Erkin Batu Altunbaş Date: Thu, 12 Jul 2012 17:07:22 +0300 Subject: ponysaytruncater seems to be writeprotected. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 079092e..e5b870f 100644 --- a/Makefile +++ b/Makefile @@ -41,4 +41,4 @@ uninstall: unlink "$(DESTDIR)/usr/share/man/man1/ponythink.6" clean: - rm "ponysaytruncater" + rm -f "ponysaytruncater" -- cgit From dbfb357d7cea1732786c7cd49211910cc84e7e43 Mon Sep 17 00:00:00 2001 From: Erkin Batu Altunbaş Date: Thu, 12 Jul 2012 19:06:41 +0200 Subject: makefile mistake man1 instead of man6 --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index e5b870f..eac642f 100644 --- a/Makefile +++ b/Makefile @@ -25,8 +25,8 @@ install: all install "COPYING" "$(DESTDIR)/usr/share/licenses/ponysay/COPYING" mkdir -p "$(DESTDIR)/usr/share/man/man6" - install "manpage.6" "$(DESTDIR)/usr/share/man/man1/ponysay.6" - ln -sf "ponysay.6" "$(DESTDIR)/usr/share/man/man1/ponythink.6" + install "manpage.6" "$(DESTDIR)/usr/share/man/man6/ponysay.6" + ln -sf "ponysay.6" "$(DESTDIR)/usr/share/man/man6/ponythink.6" uninstall: rm -fr "$(DESTDIR)/usr/share/ponysay/ponies" @@ -37,8 +37,8 @@ uninstall: unlink "$(DESTDIR)/usr/share/zsh/site-functions/_ponysay"; unlink "$(DESTDIR)/usr/share/licenses/ponysay/COPYING" unlink "$(DESTDIR)/usr/share/bash-completion/completions/ponysay" - unlink "$(DESTDIR)/usr/share/man/man1/ponysay.6" - unlink "$(DESTDIR)/usr/share/man/man1/ponythink.6" + unlink "$(DESTDIR)/usr/share/man/man6/ponysay.6" + unlink "$(DESTDIR)/usr/share/man/man6/ponythink.6" clean: rm -f "ponysaytruncater" -- cgit