From 44f90c2025efa1c5013cb9fa2db9b3566683da81 Mon Sep 17 00:00:00 2001 From: Daria Phoebe Brashear Date: Thu, 19 Apr 2018 13:54:21 -0400 Subject: [PATCH] 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) --- lib/libedit/src/makelist | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/libedit/src/makelist b/lib/libedit/src/makelist index c8f927651..315d91e2a 100644 --- a/lib/libedit/src/makelist +++ b/lib/libedit/src/makelist @@ -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 " if [ "x$1" = "x" ]