diff options
author | jlam <jlam@pkgsrc.org> | 2003-09-13 17:07:47 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2003-09-13 17:07:47 +0000 |
commit | ce04d82646f2cb5aeb669163acc2460856c8a078 (patch) | |
tree | 1780903a35edb42c42e3eb012c6ec5dd6e7ec2d6 /pkgtools | |
parent | 984894c6693f696558dc4e2bc9575a01b46af80f (diff) | |
download | pkgsrc-ce04d82646f2cb5aeb669163acc2460856c8a078.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.in | 6 |
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; \ } \ } \ |