pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/mk Remove some unnecessary parens... we don't need to ...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/41a402312d6b
branches:  trunk
changeset: 506558:41a402312d6b
user:      jlam <jlam%pkgsrc.org@localhost>
date:      Thu Jan 19 00:40:00 2006 +0000

description:
Remove some unnecessary parens... we don't need to invoke a new shell
just to run the depends-walk command.

diffstat:

 mk/bsd.utils.mk |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (23 lines):

diff -r ddd1fd1d27f2 -r 41a402312d6b mk/bsd.utils.mk
--- a/mk/bsd.utils.mk   Thu Jan 19 00:30:55 2006 +0000
+++ b/mk/bsd.utils.mk   Thu Jan 19 00:40:00 2006 +0000
@@ -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 @@
 #
 .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}



Home | Main Index | Thread Index | Old Index