aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-08-08 14:55:14 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-08-08 14:55:14 +0000
commit9dee2ec20e840a05445646f2e4b1c7137700a97e (patch)
tree6a224e0223d644e6abffa7716f5d39c84c01c734
parentd2b0ac88a7c0c0b60a5c6e42e0024dc0b1ad3b87 (diff)
downloadikiwiki-9dee2ec20e840a05445646f2e4b1c7137700a97e.tar
ikiwiki-9dee2ec20e840a05445646f2e4b1c7137700a97e.tar.gz
* Ship ikiwiki executable as ikiwiki.pl in source to avoid issues on
case-sensative filesystems like OSX.
-rwxr-xr-xMakefile.PL4
-rw-r--r--debian/changelog4
-rwxr-xr-xikiwiki.pl (renamed from ikiwiki)0
-rwxr-xr-xt/syntax.t2
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/ikiwiki b/ikiwiki.pl
index 1342ec543..1342ec543 100755
--- a/ikiwiki
+++ b/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`;