diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2006-01-23 22:29:26 +0000 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2006-01-23 22:29:26 +0000 |
commit | 390e15c842ff6144fe8e8ec3036913ecef3e5e2d (patch) | |
tree | 66a3a9f47dfb9803f491353cc9c684cd098c6d32 | |
parent | Actually patch-configure can be removed. (diff) |
Fix regression in all-depends-list target on 4.X due to ancient, buggy,
make(1) that does not support -C properly.
PR: ports/92188, 92189
Submitted by: tobez, linimon
Patch from: clement
Tested on: 4.10, 5.4, 6.0
-rw-r--r-- | Mk/bsd.port.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index e106b393a9b1..6206f3dfd118 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -4602,7 +4602,7 @@ ALL-DEPENDS-LIST= \ continue; \ fi; \ ${ECHO_CMD} $$d; \ - if ! children=$$(${MAKE} -C $$d -V _DEPEND_DIRS); then\ + if ! children=$$(cd $$d && ${MAKE} -V _DEPEND_DIRS); then\ ${ECHO_MSG} "${PKGNAME}: \"$$d\" erroneous -- dependency list incomplete" >&2; \ continue; \ fi; \ |