diff options
author | tnn <tnn@pkgsrc.org> | 2009-03-06 10:54:42 +0000 |
---|---|---|
committer | tnn <tnn@pkgsrc.org> | 2009-03-06 10:54:42 +0000 |
commit | b767667062613b9388268c955370e1db22755a0b (patch) | |
tree | 5734141d98e0248835fa87432ca58eca9e39c586 /mk/fetch | |
parent | 81bc449655494774dba66fcc2196b8af1d9845a8 (diff) | |
download | pkgsrc-b767667062613b9388268c955370e1db22755a0b.tar.gz |
in fetch-list, skip packages that have INTERACTIVE_STAGE=fetch
Diffstat (limited to 'mk/fetch')
-rw-r--r-- | mk/fetch/fetch-list.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/fetch/fetch-list.mk b/mk/fetch/fetch-list.mk index fcb5a154252..e5ca50d914e 100644 --- a/mk/fetch/fetch-list.mk +++ b/mk/fetch/fetch-list.mk @@ -1,4 +1,4 @@ -# $NetBSD: fetch-list.mk,v 1.12 2009/02/15 15:18:00 joerg Exp $ +# $NetBSD: fetch-list.mk,v 1.13 2009/03/06 10:54:42 tnn Exp $ ###################################################################### ### fetch-list (PUBLIC) @@ -59,7 +59,7 @@ fetch-list-recursive: ### .PHONY: fetch-list-one-pkg fetch-list-one-pkg: -.if !empty(_ALLFILES) +.if !empty(_ALLFILES) && empty(INTERACTIVE_STAGE:Mfetch) @${ECHO} @${ECHO} '#' @location=`${PWD_CMD} | ${AWK} -F / '{ print $$(NF-1) "/" $$NF }'`; \ |