| 1 | https://trac.macports.org/ticket/49713 |
| 2 | |
| 3 | Index: doc/autoconf.info |
| 4 | =================================================================== |
| 5 | --- doc/autoconf.info.orig |
| 6 | +++ doc/autoconf.info |
| 7 | @@ -3212,7 +3212,7 @@ These macros check for particular progra |
| 8 | some cases whether they support certain features. |
| 9 | |
| 10 | -- Macro: AC_PROG_AWK |
| 11 | - Check for `gawk', `mawk', `nawk', and `awk', in that order, and |
| 12 | + Check for `gawk', `mawk', and `awk', in that order, and |
| 13 | set output variable `AWK' to the first one that is found. It |
| 14 | tries `gawk' first because that is reported to be the best |
| 15 | implementation. The result can be overridden by setting the |
| 16 | Index: lib/autoconf/programs.m4 |
| 17 | =================================================================== |
| 18 | --- lib/autoconf/programs.m4.orig |
| 19 | +++ lib/autoconf/programs.m4 |
| 20 | @@ -347,7 +347,7 @@ AN_PROGRAM([gawk], [AC_PROG_AWK]) |
| 21 | AN_PROGRAM([mawk], [AC_PROG_AWK]) |
| 22 | AN_PROGRAM([nawk], [AC_PROG_AWK]) |
| 23 | AC_DEFUN([AC_PROG_AWK], |
| 24 | -[AC_CHECK_PROGS(AWK, gawk mawk nawk awk, )]) |
| 25 | +[AC_CHECK_PROGS(AWK, gawk mawk awk, )]) |
| 26 | |
| 27 | |
| 28 | # AC_PROG_EGREP |