diff options
author | rillig <rillig@pkgsrc.org> | 2009-03-17 22:13:36 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2009-03-17 22:13:36 +0000 |
commit | b1bf3ebab8403b377b3bebfbae35a5ac2bd645fa (patch) | |
tree | c5bfefb9f4e5413721bf7ce328e51684838cf5bd /mk/plist | |
parent | 25c04e4c1e4627af915fef22b0028873ca53e571 (diff) | |
download | pkgsrc-b1bf3ebab8403b377b3bebfbae35a5ac2bd645fa.tar.gz |
Replaced _PKG_SILENT and _PKG_DEBUG with RUN.
Diffstat (limited to 'mk/plist')
-rw-r--r-- | mk/plist/plist.mk | 4 | ||||
-rw-r--r-- | mk/plist/print-plist.mk | 9 |
2 files changed, 6 insertions, 7 deletions
diff --git a/mk/plist/plist.mk b/mk/plist/plist.mk index 0bc9add44fb..4682993a274 100644 --- a/mk/plist/plist.mk +++ b/mk/plist/plist.mk @@ -1,4 +1,4 @@ -# $NetBSD: plist.mk,v 1.38 2008/10/30 18:48:13 joerg Exp $ +# $NetBSD: plist.mk,v 1.39 2009/03/17 22:13:36 rillig Exp $ # # This Makefile fragment handles the creation of PLISTs for use by # pkg_create(8). @@ -264,7 +264,7 @@ ${PLIST}: # for list of keywords see pkg_create(1) ${_PLIST_NOKEYWORDS}: ${PLIST} - ${_PKG_SILENT}${_PKG_DEBUG} ${AWK} < ${PLIST} > ${.TARGET} ' \ + ${RUN} ${AWK} < ${PLIST} > ${.TARGET} ' \ BEGIN { \ FILTER="@("; \ FILTER=FILTER"cd|cwd|src|exec|unexec|mode|option";\ diff --git a/mk/plist/print-plist.mk b/mk/plist/print-plist.mk index 55527ab28a9..a6604866746 100644 --- a/mk/plist/print-plist.mk +++ b/mk/plist/print-plist.mk @@ -1,4 +1,4 @@ -# $NetBSD: print-plist.mk,v 1.16 2008/07/23 23:46:26 seb Exp $ +# $NetBSD: print-plist.mk,v 1.17 2009/03/17 22:13:36 rillig Exp $ ### ### Automatic PLIST generation @@ -139,9 +139,8 @@ _PRINT_PLIST_LIBTOOLIZE_FILTER?= ${CAT} .PHONY: print-PLIST .if !target(print-PLIST) print-PLIST: - ${_PKG_SILENT}${_PKG_DEBUG}\ - ${ECHO} '@comment $$'NetBSD'$$' - ${_PKG_SILENT}${_PKG_DEBUG}\ + ${RUN} ${ECHO} '@comment $$'NetBSD'$$' + ${RUN}\ shlib_type=${SHLIB_TYPE:Q}; \ case $$shlib_type in \ "a.out") genlinks=1 ;; \ @@ -175,7 +174,7 @@ print-PLIST: next; \ } \ { print $$0; }' - ${_PKG_SILENT}${_PKG_DEBUG}\ + ${RUN}\ for i in `${_PRINT_PLIST_DIRS_CMD} \ | ${SORT} -r \ | ${AWK} ' \ |