diff options
author | joerg <joerg@pkgsrc.org> | 2007-07-02 14:54:09 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2007-07-02 14:54:09 +0000 |
commit | 409b183fc09db26d6baa76e7f68916ef46c4673e (patch) | |
tree | 15cc825e1aa8d8d452f920e475ee512d1c044118 /mk/plist/print-plist.mk | |
parent | f1e659c224ef9d91d748e08becbfd3e46a2dc318 (diff) | |
download | pkgsrc-409b183fc09db26d6baa76e7f68916ef46c4673e.tar.gz |
Remove USE_MTREE support. Keep one copy (the NetBSD version) for
the purpose of print-PLIST in plist/common-dirs.mtree.
Discussed with wiz@, no objections on tech-pkg@.
Diffstat (limited to 'mk/plist/print-plist.mk')
-rw-r--r-- | mk/plist/print-plist.mk | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/mk/plist/print-plist.mk b/mk/plist/print-plist.mk index 67830825f83..a3677fca7cf 100644 --- a/mk/plist/print-plist.mk +++ b/mk/plist/print-plist.mk @@ -1,4 +1,4 @@ -# $NetBSD: print-plist.mk,v 1.12 2007/03/02 09:08:33 wiz Exp $ +# $NetBSD: print-plist.mk,v 1.13 2007/07/02 14:54:21 joerg Exp $ ### ### Automatic PLIST generation @@ -57,6 +57,8 @@ _PRINT_PLIST_AWK_IGNORE+= || ($$0 ~ /^.*\/fonts\.cache-1/) # Common (system) directories not to generate @dirrm statements for # Reads _MTREE_FILE and generate awk statements that will # sort out which directories NOT to include into the PLIST @dirrm list +_COMMON_MTREE_FILE= ${PKGSRCDIR}/mk/plist/common-dirs.mtree + .if make(print-PLIST) _PRINT_PLIST_COMMON_DIRS!= ${AWK} 'BEGIN { \ i=0; \ @@ -80,7 +82,7 @@ _PRINT_PLIST_COMMON_DIRS!= ${AWK} 'BEGIN { \ } \ } \ END { print "{ print $$$$0; }"; } \ - ' <${_MTREE_FILE} + ' <${_COMMON_MTREE_FILE} .endif # scan $PREFIX for any files/dirs modified since the package was extracted |