diff options
author | Karl Berry <karl@freefriends.org> | 2011-06-09 23:57:56 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2011-06-09 23:57:56 +0000 |
commit | cf3d9fa147bda55f948e8a79430e82b0c60364be (patch) | |
tree | 678162741fcee4ae4a4c802809d0003feca64950 /Build/source/texk/kpathsea/Makefile.in | |
parent | 75ce3bbe9bfddedca688a41bb2c3c6e6e3a6bdf3 (diff) |
use autoconf-chosen awk, to avoid broken solaris awk
git-svn-id: svn://tug.org/texlive/trunk@22899 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/kpathsea/Makefile.in')
-rw-r--r-- | Build/source/texk/kpathsea/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/texk/kpathsea/Makefile.in b/Build/source/texk/kpathsea/Makefile.in index 8429aae8b2a..71da2d945b2 100644 --- a/Build/source/texk/kpathsea/Makefile.in +++ b/Build/source/texk/kpathsea/Makefile.in @@ -1756,9 +1756,9 @@ stamp-paths: texmf.cnf bsnl.awk cnf-to-paths.awk # # generate paths.h without build machine directories. echo "/* paths.h: Generated from texmf.cnf. */" >paths.tmp - awk -f $(srcdir)/bsnl.awk $(srcdir)/texmf.cnf \ + $(AWK) -f $(srcdir)/bsnl.awk $(srcdir)/texmf.cnf \ | sed -e 's/%.*//' -e 's/^[ ]*//' -e 's/[ ]*$$//' \ - | awk -f $(srcdir)/cnf-to-paths.awk \ + | $(AWK) -f $(srcdir)/cnf-to-paths.awk \ >>paths.tmp @if cmp -s paths.h paths.tmp 2>/dev/null; then \ echo "paths.h is unchanged"; \ |