svn commit: r283574 - head/release

Glen Barber gjb at FreeBSD.org
Tue May 26 17:40:37 UTC 2015


Author: gjb
Date: Tue May 26 17:40:36 2015
New Revision: 283574
URL: https://svnweb.freebsd.org/changeset/base/283574

Log:
  Set STAGE_TARGETS only if RELEASEDIR exists.
  
  MFC after:	3 days
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/release/Makefile.mirrors

Modified: head/release/Makefile.mirrors
==============================================================================
--- head/release/Makefile.mirrors	Tue May 26 17:34:56 2015	(r283573)
+++ head/release/Makefile.mirrors	Tue May 26 17:40:36 2015	(r283574)
@@ -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"


More information about the svn-src-all mailing list