diff options
author | steve <steve@FreeBSD.org> | 1998-07-05 03:21:58 +0800 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1998-07-05 03:21:58 +0800 |
commit | 727883f552e93bf25ef0f3f85a67c9a40008d92c (patch) | |
tree | 62ed10bf5925e6dd723d78561d3e81f06c2b4dd8 /lang/nawk/files | |
parent | 6bb71d7da1b522d670082951709f0c47256b1923 (diff) | |
download | freebsd-ports-gnome-727883f552e93bf25ef0f3f85a67c9a40008d92c.tar.gz freebsd-ports-gnome-727883f552e93bf25ef0f3f85a67c9a40008d92c.tar.zst freebsd-ports-gnome-727883f552e93bf25ef0f3f85a67c9a40008d92c.zip |
Initial import of kawk.
kawk - Brian Kernighan's awk.
PR: 6460
Submitted by: Josh Gilliam <josh@quick.net>
Diffstat (limited to 'lang/nawk/files')
-rw-r--r-- | lang/nawk/files/patch-aa | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lang/nawk/files/patch-aa b/lang/nawk/files/patch-aa new file mode 100644 index 000000000000..d4615cfddcb0 --- /dev/null +++ b/lang/nawk/files/patch-aa @@ -0,0 +1,18 @@ +--- makefile.orig Sat Aug 16 05:52:46 1997 ++++ makefile Wed Apr 29 13:52:20 1998 +@@ -22,13 +22,9 @@ + # THIS SOFTWARE. + # ****************************************************************/ + +-CFLAGS = -g +-CFLAGS = -O +-CC = purify cc +-CC = gcc -Wall -g +-CC = cc ++CFLAGS ?= ${CFLAGS} ++CC ?= ${CC} + +-YACC = bison -y + YACC = yacc + YFLAGS = -d + |