diff options
Diffstat (limited to 'mk')
-rw-r--r-- | mk/plist/print-plist.mk | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mk/plist/print-plist.mk b/mk/plist/print-plist.mk index 72db6895f7b..58d6dbf81b5 100644 --- a/mk/plist/print-plist.mk +++ b/mk/plist/print-plist.mk @@ -1,4 +1,4 @@ -# $NetBSD: print-plist.mk,v 1.29 2016/05/04 11:17:41 jperkin Exp $ +# $NetBSD: print-plist.mk,v 1.30 2016/05/10 16:54:05 jperkin Exp $ ### ### Automatic PLIST generation @@ -139,7 +139,8 @@ print-PLIST: { sub("^${PKGINFODIR}/", "info/"); } \ { sub("^${PKGMANDIR}/", "man/"); } \ /^${PKG_DBDIR:S|^${PREFIX}/||:S|/|\\/|g}(\/|$$)/ { next; } \ - /^${PKGINFODIR:S|/|\\/|g}$$/ { next; }'` ; \ + /^${PKGINFODIR:S|/|\\/|g}$$/ { next; } \ + { print $$0; }'` ; \ do \ if [ `${LS} -la ${DESTDIR}${PREFIX}/$$i | ${WC} -l` = 3 ]; then \ ${ECHO} @pkgdir $$i | ${AWK} ' \ |