diff options
author | jlam <jlam@pkgsrc.org> | 2006-01-19 00:40:00 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2006-01-19 00:40:00 +0000 |
commit | d33a6b58c7b2568d69eb1ba6d84f8f1dc908fbf9 (patch) | |
tree | 293e75ba3c328edac2ef0e7714724e852de9c335 /mk | |
parent | 0cec6892bb048001323e7351ec1e5cd8d0fb4617 (diff) | |
download | pkgsrc-d33a6b58c7b2568d69eb1ba6d84f8f1dc908fbf9.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')
-rw-r--r-- | mk/bsd.utils.mk | 6 |
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} |