diff options
-rwxr-xr-x | Makefile.PL | 4 | ||||
-rw-r--r-- | debian/changelog | 4 | ||||
-rwxr-xr-x | ikiwiki.pl (renamed from ikiwiki) | 0 | ||||
-rwxr-xr-x | t/syntax.t | 2 |
4 files changed, 6 insertions, 4 deletions
diff --git a/Makefile.PL b/Makefile.PL index 303116faa..7b61acc61 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -12,7 +12,7 @@ install:: extra_install pure_install:: extra_install extra_build: - ./ikiwiki doc html --templatedir=templates --underlaydir=basewiki \ + ./ikiwiki.pl doc html --templatedir=templates --underlaydir=basewiki \ --wikiname="ikiwiki" --verbose --no-rcs \ --exclude=/discussion --no-discussion \ --plugin=brokenlinks --plugin=pagecount \ @@ -50,5 +50,5 @@ extra_install: WriteMakefile( 'NAME' => 'IkiWiki', 'PM_FILTER' => 'grep -v "removed by Makefile"', - 'EXE_FILES' => ['ikiwiki'], + 'EXE_FILES' => ['ikiwiki.pl'], ); diff --git a/debian/changelog b/debian/changelog index eaa9b816f..8fc3b66db 100644 --- a/debian/changelog +++ b/debian/changelog @@ -7,8 +7,10 @@ ikiwiki (1.17) UNRELEASED; urgency=low templates but can be useful for things like making comma-delimited lists of tags or what have you. * Remove <br> from end of aggregate preprocessor directive output. + * Ship ikiwiki executable as ikiwiki.pl in source to avoid issues on + case-sensative filesystems like OSX. - -- Joey Hess <joeyh@debian.org> Sat, 5 Aug 2006 17:15:12 -0400 + -- Joey Hess <joeyh@debian.org> Tue, 8 Aug 2006 10:52:23 -0400 ikiwiki (1.16) unstable; urgency=low diff --git a/t/syntax.t b/t/syntax.t index 1e6b04747..2462464ef 100755 --- a/t/syntax.t +++ b/t/syntax.t @@ -3,7 +3,7 @@ use warnings; use strict; use Test; -my @progs="ikiwiki"; +my @progs="ikiwiki.pl"; my @libs="IkiWiki.pm"; push @libs, map { chomp; $_ } `find IkiWiki -type f -name \\*.pm`; |