From d56e9327dc1a008751ad01cbd7793ee53c1813b3 Mon Sep 17 00:00:00 2001 From: bapt Date: Thu, 2 Feb 2012 07:21:14 +0000 Subject: Fix a regression in the default target chain introduced when pushing the new pkg-depends target. Now check-sanity and all depending targets are called again With hat: portmgr --- Mk/bsd.port.mk | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'Mk') diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index 98e5eaa5bd78..50ef85751cee 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -4284,7 +4284,7 @@ _SANITY_SEQ= ${_CHROOT_SEQ} pre-everything check-makefile \ _PKG_DEP= check-sanity _PKG_SEQ= pkg-depends -_FETCH_DEP= pkg-depends +_FETCH_DEP= pkg _FETCH_SEQ= fetch-depends pre-fetch pre-fetch-script \ do-fetch post-fetch post-fetch-script _EXTRACT_DEP= fetch @@ -4329,6 +4329,10 @@ check-sanity: ${_SANITY_SEQ} fetch: ${_FETCH_DEP} ${_FETCH_SEQ} .endif +.if !target(pkg) +pkg: ${_PKG_DEP} ${_PKG_SEQ} +.endif + # Main logic. The loop generates 6 main targets and using cookies # ensures that those already completed are skipped. -- cgit