diff options
author | joerg <joerg> | 2015-09-14 08:27:13 +0000 |
---|---|---|
committer | joerg <joerg> | 2015-09-14 08:27:13 +0000 |
commit | 09530523ea86afe3f2b202255dd7b8ad2cbae09b (patch) | |
tree | 6fc4ed4b5f7648ad1ef315422010511ecc008adb | |
parent | ef2a2dc4b0df2f174e98db49f50408a743cee5e0 (diff) | |
download | pkgsrc-09530523ea86afe3f2b202255dd7b8ad2cbae09b.tar.gz |
Reorder and fix logic snafu.
-rw-r--r-- | mk/fetch/fetch.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mk/fetch/fetch.mk b/mk/fetch/fetch.mk index 1d8b7256113..be1a328bade 100644 --- a/mk/fetch/fetch.mk +++ b/mk/fetch/fetch.mk @@ -1,4 +1,4 @@ -# $NetBSD: fetch.mk,v 1.66 2015/09/13 15:03:57 joerg Exp $ +# $NetBSD: fetch.mk,v 1.67 2015/09/14 08:27:13 joerg Exp $ .if empty(INTERACTIVE_STAGE:Mfetch) && empty(FETCH_MESSAGE:U) _MASTER_SITE_BACKUP= ${MASTER_SITE_BACKUP:=${DIST_SUBDIR}${DIST_SUBDIR:D/}} @@ -117,10 +117,10 @@ post-fetch: ${DISTDIR}/${_file_}: @${DO_NADA} . else -${DISTDIR}/${_file_}: do-fetch-file error-check -. if !empty(IGNORE_INTERACTIVE_FETCH:M[yY][eE][sS]) +. if empty(IGNORE_INTERACTIVE_FETCH:Uno:M[yY][eE][sS]) ${DISTDIR}/${_file_}: fetch-check-interactive . endif +${DISTDIR}/${_file_}: do-fetch-file error-check . endif .endfor |