diff options
author | Timo Sirainen <cras@irssi.org> | 2001-01-17 19:00:30 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2001-01-17 19:00:30 +0000 |
commit | 0047f166be9787cc3c3bd3af7a35ff9c628658f8 (patch) | |
tree | 98124e7f79e864e9b7689a9576fbc793f0ed3dcd /syntax.pl | |
parent | c8283fa07cc786114d13c2e31e3beeff64fff11c (diff) | |
download | irssi-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-x | syntax.pl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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/); |