libedit: makelist should default to awk, but not force it

solaris needs gawk; we should allow the makefile to override awk
with gawk (or whatever else)
This commit is contained in:
Daria Phoebe Brashear
2018-04-19 13:54:21 -04:00
committed by Jeffrey Altman
parent d9425fecdf
commit 44f90c2025

@ -35,7 +35,10 @@
# makelist.sh: Automatically generate header files...
AWK=awk
if [ "x$AWK" = "x" ]
then
AWK=awk
fi
USAGE="Usage: $0 -h|-fc|-fh|-bh <filenames>"
if [ "x$1" = "x" ]