summaryrefslogtreecommitdiff
path: root/pkgtools
diff options
context:
space:
mode:
authorgrant <grant@pkgsrc.org>2003-12-08 15:28:54 +0000
committergrant <grant@pkgsrc.org>2003-12-08 15:28:54 +0000
commitb54024e19849f4787df2812bf0cbe07eeef5ddac (patch)
treeaaae07ec085a1e2e84eb34d2a42f1c093b5ff9d9 /pkgtools
parent72583469c5b98966e82ea326137dd0b1a2e8693e (diff)
downloadpkgsrc-b54024e19849f4787df2812bf0cbe07eeef5ddac.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; \