1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-22 04:35:58 -04:00

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
This commit is contained in:
Timo Sirainen 2001-01-17 19:00:30 +00:00 committed by cras
parent c8283fa07c
commit 0047f166be

View File

@ -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/);