summaryrefslogtreecommitdiff
path: root/pkgtools
diff options
context:
space:
mode:
authorgrant <grant>2003-12-08 15:28:54 +0000
committergrant <grant>2003-12-08 15:28:54 +0000
commit572e33bce7a633d67ecca5086c4d7db96028ab94 (patch)
treeaaae07ec085a1e2e84eb34d2a42f1c093b5ff9d9 /pkgtools
parent5608986a986c947f48dac4b3766d2e127f30fc8b (diff)
downloadpkgsrc-572e33bce7a633d67ecca5086c4d7db96028ab94.tar.gz
shut up another escaping warning from gawk.
Diffstat (limited to 'pkgtools')
-rw-r--r--pkgtools/libnbcompat/files/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgtools/libnbcompat/files/Makefile.in b/pkgtools/libnbcompat/files/Makefile.in
index 17748c0f99b..61adafda801 100644
--- a/pkgtools/libnbcompat/files/Makefile.in
+++ b/pkgtools/libnbcompat/files/Makefile.in
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.in,v 1.20 2003/09/14 14:41:23 grant Exp $
+# $NetBSD: Makefile.in,v 1.21 2003/12/08 15:28:54 grant Exp $
#
srcdir= @srcdir@
@@ -52,7 +52,7 @@ nbcompat/nbconfig.h: nbcompat/config.h
/^\#[ ]*define[ ]+/ { \
if (process == 1) { \
guard = $$0; \
- sub("^\#[ ]*define[ ]+", "", guard); \
+ sub("^#[ ]*define[ ]+", "", guard); \
sub("[ ]+.*", "", guard); \
print "#ifndef " guard; \
print $$0; \