diff options
author | agc <agc@pkgsrc.org> | 1997-10-16 13:49:08 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 1997-10-16 13:49:08 +0000 |
commit | 165fb7ce1f683571fc78e6cb8ef5adcd8fa7c5ca (patch) | |
tree | 427050f684461f9e4a1039e50cb39feb84572241 /lang/mawk/patches | |
parent | 0524577e0fe959e088b4dccfcc01c507fc3314bd (diff) | |
download | pkgsrc-165fb7ce1f683571fc78e6cb8ef5adcd8fa7c5ca.tar.gz |
Initial import of Mike Brennan's small, fast awk clone to
NetBSD package system.
Diffstat (limited to 'lang/mawk/patches')
-rw-r--r-- | lang/mawk/patches/patch-aa | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/lang/mawk/patches/patch-aa b/lang/mawk/patches/patch-aa new file mode 100644 index 00000000000..d668bcdae97 --- /dev/null +++ b/lang/mawk/patches/patch-aa @@ -0,0 +1,25 @@ +--- Makefile.in.orig Sun Dec 17 22:20:55 1995 ++++ Makefile.in Wed Oct 1 16:24:02 1997 +@@ -11,10 +11,11 @@ + + YACC = @YACC@ + ++prefix= ${PREFIX} + # where to put mawk +-BINDIR = @BINDIR@ ++BINDIR = ${prefix}/bin + # where to put the man pages +-MANDIR = @MANDIR@ ++MANDIR = ${prefix}/man/man1 + MANEXT = @MANEXT@ + ####################################### + +@@ -31,7 +32,7 @@ + REXP_C=rexp/rexp.c rexp/rexp0.c rexp/rexp1.c rexp/rexp2.c\ + rexp/rexp3.c + +- ++all: mawk_and_test + mawk_and_test : mawk mawk_test fpe_test + + mawk : $(O) rexp/.done |