summaryrefslogtreecommitdiff
path: root/dists
diff options
context:
space:
mode:
authoreinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2006-11-10 18:01:08 +0000
committereinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2006-11-10 18:01:08 +0000
commit79fcd2e4f50f5087fd45422ca39f33e1fdce8f5b (patch)
tree1df22e7fd286751b4c1df1562bf1e5d400ccaa5f /dists
parentdcb01a2da89e581046f8b7b03eaf2245f77ab4e0 (diff)
fixed bug in Win32 Vanilla Perl shebang script
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@504 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'dists')
-rw-r--r--dists/win32/shebang-vanilla.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/dists/win32/shebang-vanilla.pl b/dists/win32/shebang-vanilla.pl
index bcc69498..73d02590 100644
--- a/dists/win32/shebang-vanilla.pl
+++ b/dists/win32/shebang-vanilla.pl
@@ -1,4 +1,4 @@
-#!c:\vanilla-perl\perl\bin
+#!c:\vanilla-perl\perl\bin\perl
# Use this script to convert the beginnings of files to the path to ActivePerl
# if you are installing with Vanilla Perl.
@@ -16,7 +16,7 @@
$line = shift @file;
- print FH "#!c:\\vanilla-perl\\perl\\bin\n";
+ print FH "#!c:\\vanilla-perl\\perl\\bin\\perl\n";
print FH @file;
close(FH);