From: joey Date: Tue, 8 Aug 2006 14:55:14 +0000 (+0000) Subject: * Ship ikiwiki executable as ikiwiki.pl in source to avoid issues on X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/commitdiff_plain/9dee2ec20e840a05445646f2e4b1c7137700a97e * Ship ikiwiki executable as ikiwiki.pl in source to avoid issues on case-sensative filesystems like OSX. --- 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
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 Sat, 5 Aug 2006 17:15:12 -0400 + -- Joey Hess Tue, 8 Aug 2006 10:52:23 -0400 ikiwiki (1.16) unstable; urgency=low diff --git a/ikiwiki b/ikiwiki.pl similarity index 100% rename from ikiwiki rename to ikiwiki.pl 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`;