From: Mathieu Lirzin Date: Sat, 2 Jun 2018 13:41:59 +0000 (+0200) Subject: Use the ‘perl’ found in the PATH environment variable X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d70d0e2243f6bf54fb9bce3ce159d905c78cef26;p=thirdparty%2Fautomake.git Use the ‘perl’ found in the PATH environment variable --- diff --git a/lib/Automake/Parser/Makefile b/lib/Automake/Parser/Makefile index fe9e4357f..b98bffcc5 100644 --- a/lib/Automake/Parser/Makefile +++ b/lib/Automake/Parser/Makefile @@ -2,11 +2,11 @@ all: execute execute: Lexer.pm Tree.pm ParserTable.pm parser.pl - ./Parser.pl + perl -I. parser.pl unflatten -f -l 5 -c 6 -o ast1.gv ast.gv dot -Tpng ast1.gv > ast.png rm ast1.gv - + build: buildGrammer buildTree buildGrammer: automake.y @@ -17,4 +17,4 @@ buildGrammer: automake.y rm automake1.dot buildTree: automake.dot Converter.pl - ./Converter.pl \ No newline at end of file + perl -I. Converter.pl