diff options
author | gjb <gjb@FreeBSD.org> | 2015-05-26 17:40:36 +0000 |
---|---|---|
committer | gjb <gjb@FreeBSD.org> | 2015-05-26 17:40:36 +0000 |
commit | 8e21d8b251a777b191297f7fe11c0370c1fafa55 (patch) | |
tree | 89c8657478ffd92c011444eaa1a71abfe6d6b569 /release | |
parent | 6e843aaf850bd1f5c8e294b762a391e69b88b201 (diff) | |
download | FreeBSD-src-8e21d8b251a777b191297f7fe11c0370c1fafa55.zip FreeBSD-src-8e21d8b251a777b191297f7fe11c0370c1fafa55.tar.gz |
Set STAGE_TARGETS only if RELEASEDIR exists.
MFC after: 3 days
Sponsored by: The FreeBSD Foundation
Diffstat (limited to 'release')
-rw-r--r-- | release/Makefile.mirrors | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/release/Makefile.mirrors b/release/Makefile.mirrors index 2f37a2b..fb32427 100644 --- a/release/Makefile.mirrors +++ b/release/Makefile.mirrors @@ -16,7 +16,9 @@ RELEASEDIR?= /R FTPDIR?= ${RELEASEDIR}/ftp-stage +.if exists(${RELEASEDIR}) STAGE_TARGETS?= iso-images-stage +.endif .if (defined(EMBEDDED_TARGET) && !empty(EMBEDDED_TARGET)) || (defined(EMBEDDEDBUILD) && !empty(EMBEDDEDBUILD)) . if ${TARGET} == "arm" || ${EMBEDDED_TARGET} == "arm" |