summaryrefslogtreecommitdiff
path: root/mk/bsd.utils.mk
diff options
context:
space:
mode:
authorjlam <jlam>2006-01-19 00:40:00 +0000
committerjlam <jlam>2006-01-19 00:40:00 +0000
commit23cf41caf93eb6442c44f628cfb619836dbf403d (patch)
tree293e75ba3c328edac2ef0e7714724e852de9c335 /mk/bsd.utils.mk
parentb111a9a9b7599b990c323f618c6a0e1806750ab9 (diff)
downloadpkgsrc-23cf41caf93eb6442c44f628cfb619836dbf403d.tar.gz
Remove some unnecessary parens... we don't need to invoke a new shell
just to run the depends-walk command.
Diffstat (limited to 'mk/bsd.utils.mk')
-rw-r--r--mk/bsd.utils.mk6
1 files changed, 3 insertions, 3 deletions
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}