From 993b20f990b92da974f5d2467e976be4f532b36c Mon Sep 17 00:00:00 2001 From: joey Date: Fri, 15 Sep 2006 17:23:30 +0000 Subject: [PATCH] * Yet another fix for those poor case-sensative OSX users. --- Makefile.PL | 10 +++++----- debian/changelog | 3 ++- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/Makefile.PL b/Makefile.PL index d2266ad8e..cdf28f16e 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -13,9 +13,6 @@ pure_install:: extra_install VER=$(shell perl -e '$$_=<>;print m/\((.*?)\)/' ikiwiki - extra_build: ./ikiwiki.pl doc html --templatedir=templates --underlaydir=basewiki \ --wikiname="ikiwiki" --verbose --no-rcs \ @@ -27,10 +24,11 @@ extra_build: --plugin=template --plugin=toc ./mdwn2man ikiwiki 1 doc/usage.mdwn > ikiwiki.man ./mdwn2man ikiwiki-mass-rebuild 8 doc/ikiwiki-mass-rebuild.mdwn > ikiwiki-mass-rebuild.man + ./pm_filter $(PREFIX) $(VER) < ikiwiki.pl > ikiwiki.out extra_clean: rm -rf html doc/.ikiwiki - rm -f ikiwiki.man ikiwiki-mass-rebuild.man + rm -f ikiwiki.man ikiwiki-mass-rebuild.man ikiwiki.out extra_install: install -d $(DESTDIR)$(PREFIX)/share/ikiwiki/templates @@ -50,6 +48,9 @@ extra_install: install -d $(DESTDIR)$(PREFIX)/lib/w3m/cgi-bin install ikiwiki-w3m.cgi $(DESTDIR)$(PREFIX)/lib/w3m/cgi-bin + + install -d $(DESTDIR)$(PREFIX)/bin + install ikiwiki.out $(DESTDIR)$(PREFIX)/bin/ikiwiki } } @@ -57,7 +58,6 @@ WriteMakefile( NAME => 'IkiWiki', PREFIX => "/usr/local", PM_FILTER => './pm_filter $(PREFIX) $(VER)', - EXE_FILES => ['ikiwiki'], MAN1PODS => {}, clean => {FILES => 'ikiwiki'}, ); diff --git a/debian/changelog b/debian/changelog index 93d2973cd..0ca7ba289 100644 --- a/debian/changelog +++ b/debian/changelog @@ -32,8 +32,9 @@ ikiwiki (1.27) UNRELEASED; urgency=low * Add a stub local.css to avoid problems with 404's. * Patch from Recai to fix a wide character warning from the search plugin during setup if the wikiname contains utf8. + * Yet another fix for those poor case-sensative OSX users. - -- Joey Hess Fri, 15 Sep 2006 13:10:06 -0400 + -- Joey Hess Fri, 15 Sep 2006 13:19:54 -0400 ikiwiki (1.26) unstable; urgency=low -- 2.32.0.93.g670b81a890