diff options
author | rillig <rillig@pkgsrc.org> | 2006-06-01 07:11:09 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2006-06-01 07:11:09 +0000 |
commit | 9425b46021a9736a4160fe53f3d60da41f832d47 (patch) | |
tree | 5fd9622fdcdf6bf77511f31201402a1af9f499a1 /mk/plist | |
parent | 8f2159e5e8463a701e60ad665a0ddf918ce5a879 (diff) | |
download | pkgsrc-9425b46021a9736a4160fe53f3d60da41f832d47.tar.gz |
Removed superfluous backslashes.
Diffstat (limited to 'mk/plist')
-rw-r--r-- | mk/plist/plist-info.awk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/plist/plist-info.awk b/mk/plist/plist-info.awk index 8c19c059e57..1f4d943af47 100644 --- a/mk/plist/plist-info.awk +++ b/mk/plist/plist-info.awk @@ -1,4 +1,4 @@ -# $NetBSD: plist-info.awk,v 1.14 2006/06/01 06:12:48 rillig Exp $ +# $NetBSD: plist-info.awk,v 1.15 2006/06/01 07:11:09 rillig Exp $ # # Copyright (c) 2006 The NetBSD Foundation, Inc. # All rights reserved. @@ -74,7 +74,7 @@ BEGIN { ### Canonicalize info page entries by converting ${PKGINFODIR}/ to info/. ### /^[^@]/ && ($0 !~ "^" IGNORE_INFO_REGEXP "/") && \ -($0 ~ "^" PKGINFODIR "\/[^\/]+(\\.info)?(-[0-9]+)?(\\.gz)?$") { +($0 ~ "^" PKGINFODIR "/[^/]+(\\.info)?(-[0-9]+)?(\\.gz)?$") { sub("^" PKGINFODIR "/", "info/") } ($0 !~ "^@dirrm " IGNORE_INFO_REGEXP "$") && \ |