diff options
author | grant <grant@pkgsrc.org> | 2003-12-08 15:28:54 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2003-12-08 15:28:54 +0000 |
commit | 7d930f82a410d104bb27721222ea0ee2ae150e69 (patch) | |
tree | aaae07ec085a1e2e84eb34d2a42f1c093b5ff9d9 /pkgtools/libnbcompat | |
parent | 6624c24661a1d8f60bb7c96e6e5741515611c8e2 (diff) | |
download | pkgsrc-7d930f82a410d104bb27721222ea0ee2ae150e69.tar.gz |
shut up another escaping warning from gawk.
Diffstat (limited to 'pkgtools/libnbcompat')
-rw-r--r-- | pkgtools/libnbcompat/files/Makefile.in | 4 |
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; \ |