]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
Use the ‘perl’ found in the PATH environment variable
authorMathieu Lirzin <mthl@gnu.org>
Sat, 2 Jun 2018 13:41:59 +0000 (15:41 +0200)
committerMathieu Lirzin <mthl@gnu.org>
Sat, 2 Jun 2018 13:41:59 +0000 (15:41 +0200)
lib/Automake/Parser/Makefile

index fe9e4357f270c8cdc5d986bf6d9be93a35ff7e22..b98bffcc5ebbebf9e01a5260d152a8732ea2898e 100644 (file)
@@ -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