summaryrefslogtreecommitdiff
path: root/syntax.pl
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2001-01-17 19:00:30 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2001-01-17 19:00:30 +0000
commit0047f166be9787cc3c3bd3af7a35ff9c628658f8 (patch)
tree98124e7f79e864e9b7689a9576fbc793f0ed3dcd /syntax.pl
parentc8283fa07cc786114d13c2e31e3beeff64fff11c (diff)
downloadirssi-0047f166be9787cc3c3bd3af7a35ff9c628658f8.zip
call findsyntax.pl with "perl findsyntax.pl" instead of ./findsyntax.pl,
Perl isn't always in /usr/bin/perl git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1129 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'syntax.pl')
-rwxr-xr-xsyntax.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/syntax.pl b/syntax.pl
index 39a600eb..2d98d4c4 100755
--- a/syntax.pl
+++ b/syntax.pl
@@ -10,7 +10,7 @@
# Remember to include the asterisk ('*').
$SRC_PATH='src';
-$FOO = `find src -name '*.c' -exec ./findsyntax.pl \{\} \\; | sed 's/.*SYNTAX: //' > irssi_syntax`;
+$FOO = `find src -name '*.c' -exec perl findsyntax.pl \{\} \\; | sed 's/.*SYNTAX: //' > irssi_syntax`;
while (<docs/help/in/*.in>) {
next if (/Makefile/);