summaryrefslogtreecommitdiff
path: root/m4/ax_with_prog.m4
diff options
context:
space:
mode:
authorFrancesco Salvestrini <salvestrini@users.sourceforge.net>2008-05-02 00:18:55 +0200
committerPeter Simons <simons@cryp.to>2008-05-02 00:18:55 +0200
commit12b07d3b0219d93bf1517cf1d850419e29771912 (patch)
tree79710f05569339d40e7261e999a644d09e8f3154 /m4/ax_with_prog.m4
parentc90c23f79b8f3fc01532f0bab3e24841d19617ea (diff)
downloadautoconf-archive-12b07d3b0219d93bf1517cf1d850419e29771912.tar.gz
AX_WITH_{GUILE,PERL,PROG,PYTHON,RUBY}: improved documentation
Diffstat (limited to 'm4/ax_with_prog.m4')
-rw-r--r--m4/ax_with_prog.m48
1 files changed, 4 insertions, 4 deletions
diff --git a/m4/ax_with_prog.m4 b/m4/ax_with_prog.m4
index a47e83b..a7c18f7 100644
--- a/m4/ax_with_prog.m4
+++ b/m4/ax_with_prog.m4
@@ -4,7 +4,7 @@
#
# SYNOPSIS
#
-# AX_PROG_WITH([VARIABLE],[program],[PATH],[VALUE-IF-NOT-FOUND])
+# AX_WITH_PROG([VARIABLE],[program],[VALUE-IF-NOT-FOUND],[PATH])
#
# DESCRIPTION
#
@@ -40,8 +40,8 @@ AC_DEFUN([AX_WITH_PROG],[
pushdef([VARIABLE],$1)
pushdef([EXECUTABLE],$2)
- pushdef([PATH_PROG],$3)
- pushdef([VALUE_IF_NOT_FOUND],$4)
+ pushdef([VALUE_IF_NOT_FOUND],$3)
+ pushdef([PATH_PROG],$4)
AC_ARG_VAR(VARIABLE,Absolute path to EXECUTABLE executable)
@@ -64,8 +64,8 @@ AC_DEFUN([AX_WITH_PROG],[
])
])
- popdef([VALUE_IF_NOT_FOUND])
popdef([PATH_PROG])
+ popdef([VALUE_IF_NOT_FOUND])
popdef([EXECUTABLE])
popdef([VARIABLE])
])