diff options
author | jlam <jlam> | 2003-09-13 17:07:47 +0000 |
---|---|---|
committer | jlam <jlam> | 2003-09-13 17:07:47 +0000 |
commit | 0dc734be6deb606160900e0ee636ec6799717449 (patch) | |
tree | 1780903a35edb42c42e3eb012c6ec5dd6e7ec2d6 /pkgtools | |
parent | 30b0e46d629b9dd016262047d16e42a4a178dd6c (diff) | |
download | pkgsrc-0dc734be6deb606160900e0ee636ec6799717449.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; \ } \ } \ |