aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/awk/Makefile
diff options
context:
space:
mode:
authorRuslan Ermilov <ru@FreeBSD.org>2005-05-17 14:54:33 +0000
committerRuslan Ermilov <ru@FreeBSD.org>2005-05-17 14:54:33 +0000
commitf9fe4d605fdc9a299101daa30a9b96e852f16552 (patch)
tree1c507d99072c622d2ec832131fd979140c807376 /usr.bin/awk/Makefile
parent95f55a632e8ac74e663733bcf72f4e38916020e7 (diff)
downloadsrc-f9fe4d605fdc9a299101daa30a9b96e852f16552.tar.gz
src-f9fe4d605fdc9a299101daa30a9b96e852f16552.zip
Add temporary patches to make one-true-awk respect locale's collating order
in [a-z] bracket expressions, until a more complete fix (like handing BREs) is ready. Prodded by: ache OK'ed by: tjr
Notes
Notes: svn path=/head/; revision=146322
Diffstat (limited to 'usr.bin/awk/Makefile')
-rw-r--r--usr.bin/awk/Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/usr.bin/awk/Makefile b/usr.bin/awk/Makefile
index 1d3642b6a832..87eaa4166b86 100644
--- a/usr.bin/awk/Makefile
+++ b/usr.bin/awk/Makefile
@@ -29,4 +29,10 @@ CLEANFILES+= nawk.1
nawk.1: awk.1
cat ${.ALLSRC} > ${.TARGET}
+.for f in b.c main.c run.c
+${f}: ${AWKSRC}/${f} ${.CURDIR}/${f}.diff
+ patch -s -b .orig -o ${.TARGET} < ${.CURDIR}/${f}.diff ${AWKSRC}/${f}
+CLEANFILES+= ${f}
+.endfor
+
.include <bsd.prog.mk>