summaryrefslogtreecommitdiff
path: root/pkgtools
diff options
context:
space:
mode:
authorjlam <jlam>2003-09-13 17:07:47 +0000
committerjlam <jlam>2003-09-13 17:07:47 +0000
commit606e25c7c68413565c7767e2e9389f2fa84e0b4f (patch)
tree1780903a35edb42c42e3eb012c6ec5dd6e7ec2d6 /pkgtools
parentb3422296ef6fd2715028e044057026a1ef528b7b (diff)
downloadpkgsrc-606e25c7c68413565c7767e2e9389f2fa84e0b4f.tar.gz
Don't escape '#' within a print statement as it seems to break with some
awks. Thanks to Hubert Feyrer for the fix!
Diffstat (limited to 'pkgtools')
-rw-r--r--pkgtools/libnbcompat/files/Makefile.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgtools/libnbcompat/files/Makefile.in b/pkgtools/libnbcompat/files/Makefile.in
index d4a63bb75eb..220e750c137 100644
--- a/pkgtools/libnbcompat/files/Makefile.in
+++ b/pkgtools/libnbcompat/files/Makefile.in
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.in,v 1.17 2003/09/13 03:50:12 jlam Exp $
+# $NetBSD: Makefile.in,v 1.18 2003/09/13 17:07:47 jlam Exp $
#
srcdir= @srcdir@
@@ -50,9 +50,9 @@ nbcompat/nbconfig.h: nbcompat/config.h
guard = $$0; \
sub("^\#[ ]*define[ ]+", "", guard); \
sub("[ ]+.*", "", guard); \
- print "\#ifndef " guard; \
+ print "#ifndef " guard; \
print $$0; \
- print "\#endif"; \
+ print "#endif"; \
next; \
} \
} \