summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorjlam <jlam>2000-10-19 02:30:05 +0000
committerjlam <jlam>2000-10-19 02:30:05 +0000
commit81cb7dc7031210a66ebefac44adfd1e9218a2fce (patch)
tree5037e1854304d9f5581d45f981f169299035e945 /mk
parentd13af75a2f963197308db33ff5c73328b6db21cb (diff)
downloadpkgsrc-81cb7dc7031210a66ebefac44adfd1e9218a2fce.tar.gz
Make print-PLIST output the install-info lines only when it finds
files ending in ".info", not for any file that ends in "info".
Diffstat (limited to 'mk')
-rw-r--r--mk/bsd.pkg.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk
index 5edf9a244c1..6b83e573526 100644
--- a/mk/bsd.pkg.mk
+++ b/mk/bsd.pkg.mk
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.pkg.mk,v 1.588 2000/10/17 23:56:19 jlam Exp $
+# $NetBSD: bsd.pkg.mk,v 1.589 2000/10/19 02:30:05 jlam Exp $
#
# This file is in the public domain.
#
@@ -2995,7 +2995,7 @@ print-PLIST:
| sort \
| ${AWK} ' \
{ \
- if (/.info$$/) { \
+ if (/\.info$$/) { \
print "\@unexec install-info --delete --info-dir=%D/info %D/" $$1; \
print $$1; \
print "\@exec install-info --info-dir=%D/info %D/" $$1; \