Undo last change. nawk == awk in our tree, and no different behaviour is
authortholo <tholo@openbsd.org>
Thu, 27 Feb 1997 21:45:53 +0000 (21:45 +0000)
committertholo <tholo@openbsd.org>
Thu, 27 Feb 1997 21:45:53 +0000 (21:45 +0000)
seen by invoking it as nawk.  The problem this change claimed to correct
must have had another source.

lib/libcurses/Makefile

index 5c9d88c..5f90a42 100644 (file)
@@ -1,4 +1,4 @@
-#      $OpenBSD: Makefile,v 1.12 1997/02/27 08:02:07 angelos Exp $
+#      $OpenBSD: Makefile,v 1.13 1997/02/27 21:45:53 tholo Exp $
 
 LIB=    curses
 SRCS=  hardscroll.c lib_acs.c lib_delch.c lib_insstr.c lib_options.c \
@@ -37,10 +37,10 @@ includes:
          ${DESTDIR}/usr/include
 
 keys.tries: ${.CURDIR}/keys.list ${.CURDIR}/MKkeys.awk
-       nawk -f ${.CURDIR}/MKkeys.awk ${.CURDIR}/keys.list > keys.tries
+       awk -f ${.CURDIR}/MKkeys.awk ${.CURDIR}/keys.list > keys.tries
 
 lib_keyname.c: ${.CURDIR}/keys.list ${.CURDIR}/MKkeyname.awk
-       nawk -f ${.CURDIR}/MKkeyname.awk ${.CURDIR}/keys.list > lib_keyname.c
+       awk -f ${.CURDIR}/MKkeyname.awk ${.CURDIR}/keys.list > lib_keyname.c
 
 lib_gen.c: ${.CURDIR}/curses.h ${.CURDIR}/MKlib_gen.sh
        sh ${.CURDIR}/MKlib_gen.sh "${CPP}" "awk" < ${.CURDIR}/curses.h > lib_gen.c