Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 18 Sep 2013 21:28:13 +0000 (UTC)
From:      Bryan Drewery <bdrewery@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r327577 - head/misc/tet
Message-ID:  <201309182128.r8ILSDeK066071@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bdrewery
Date: Wed Sep 18 21:28:13 2013
New Revision: 327577
URL: http://svnweb.freebsd.org/changeset/ports/327577

Log:
  - Set IGNORE if TET_ROOT not defined instead of hitting an error
    while building packages.  Did not use MANUAL_PACKAGE_BUILD as
    maybe someone is building packages and has TET_ROOT defined for
    the port.
  
  With hat:	portmgr

Modified:
  head/misc/tet/Makefile

Modified: head/misc/tet/Makefile
==============================================================================
--- head/misc/tet/Makefile	Wed Sep 18 21:16:25 2013	(r327576)
+++ head/misc/tet/Makefile	Wed Sep 18 21:28:13 2013	(r327577)
@@ -35,6 +35,10 @@ BUILD_DEPENDS+=		unzip:${PORTSDIR}/archi
 PKG_ARGS=		-v -c -${COMMENT:Q} -d ${DESCR} -f ${TMPPLIST} \
 			-p ${TET_ROOT} -o ${CATEGORIES}/${PORTNAME}
 
+.if !defined(TET_ROOT)
+IGNORE=		Requires TET_ROOT be set for build
+.endif
+
 do-extract:
 .if !defined(TET_ROOT)
 	@${ECHO_MSG}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201309182128.r8ILSDeK066071>