summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2000-10-19 02:30:05 +0000
committerjlam <jlam@pkgsrc.org>2000-10-19 02:30:05 +0000
commitfaa90cdf97e272727776a26e4eb1512472cdb189 (patch)
tree5037e1854304d9f5581d45f981f169299035e945 /mk
parent2a82d50a6294c37c6cc9fd9eec0e752b5b0d56d4 (diff)
downloadpkgsrc-faa90cdf97e272727776a26e4eb1512472cdb189.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; \