From d33a6b58c7b2568d69eb1ba6d84f8f1dc908fbf9 Mon Sep 17 00:00:00 2001 From: jlam Date: Thu, 19 Jan 2006 00:40:00 +0000 Subject: Remove some unnecessary parens... we don't need to invoke a new shell just to run the depends-walk command. --- mk/bsd.utils.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'mk') diff --git a/mk/bsd.utils.mk b/mk/bsd.utils.mk index 55d3709368b..c0afb9e692b 100644 --- a/mk/bsd.utils.mk +++ b/mk/bsd.utils.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.utils.mk,v 1.4 2006/01/18 20:18:04 jlam Exp $ +# $NetBSD: bsd.utils.mk,v 1.5 2006/01/19 00:40:00 jlam Exp $ # # This Makefile fragment is included by bsd.pkg.mk and defines utility # and otherwise miscellaneous variables and targets. @@ -44,11 +44,11 @@ _DEPENDS_WALK_CMD= \ # .PHONY: show-all-depends-dirs show-all-depends-dirs: - @(${_DEPENDS_WALK_CMD} -r ${PKGPATH}) + @${_DEPENDS_WALK_CMD} -r ${PKGPATH} # show-all-depends-dirs-excl prints a list of every dependency, implied and # direct", of the current package. # .PHONY: show-all-depends-dirs-excl show-all-depends-dirs-excl: - @(${_DEPENDS_WALK_CMD} ${PKGPATH}) + @${_DEPENDS_WALK_CMD} ${PKGPATH} -- cgit v1.2.3