]> sipb.mit.edu Git - ikiwiki.git/commitdiff
* Ship ikiwiki executable as ikiwiki.pl in source to avoid issues on
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>
Tue, 8 Aug 2006 14:55:14 +0000 (14:55 +0000)
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>
Tue, 8 Aug 2006 14:55:14 +0000 (14:55 +0000)
  case-sensative filesystems like OSX.

Makefile.PL
debian/changelog
ikiwiki.pl [moved from ikiwiki with 100% similarity]
t/syntax.t

index 303116faae35e630a6e9239b4569849150fd3bef..7b61acc617195fc442d8574ea867f22c56187a6f 100755 (executable)
@@ -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'],
 );
index eaa9b816f72c3dc8ae1b48f9f031fd5ad9650c6a..8fc3b66dbf7e6b99a109e564323f3dd771847d5a 100644 (file)
@@ -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
 
similarity index 100%
rename from ikiwiki
rename to ikiwiki.pl
index 1e6b047478a5e9bd2ba06774893f346d3204b2dd..2462464ef26c3811e7e85a17068656082f25fe81 100755 (executable)
@@ -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`;