aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-09-15 17:23:30 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-09-15 17:23:30 +0000
commit993b20f990b92da974f5d2467e976be4f532b36c (patch)
tree44f2a487a9e76faf87e3b28a6fcc0dcc9af51c96
parentdfedb0351d154cd1d58e719012f4b1dda3a07666 (diff)
downloadikiwiki-993b20f990b92da974f5d2467e976be4f532b36c.tar
ikiwiki-993b20f990b92da974f5d2467e976be4f532b36c.tar.gz
* Yet another fix for those poor case-sensative OSX users.
-rwxr-xr-xMakefile.PL10
-rw-r--r--debian/changelog3
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/\((.*?)\)/'<debian/changelog)
-ikiwiki: ikiwiki.pl
- ./pm_filter $(PREFIX) $(VER) < ikiwiki.pl > 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 <joeyh@debian.org> Fri, 15 Sep 2006 13:10:06 -0400
+ -- Joey Hess <joeyh@debian.org> Fri, 15 Sep 2006 13:19:54 -0400
ikiwiki (1.26) unstable; urgency=low