Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 14 Oct 2012 14:39:47 +0000 (UTC)
From:      Steve Wills <swills@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r305880 - head/sysutils/puppet
Message-ID:  <201210141439.q9EEdlgr083071@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: swills
Date: Sun Oct 14 14:39:47 2012
New Revision: 305880
URL: http://svn.freebsd.org/changeset/ports/305880

Log:
  - Fix logic for OptionsNG
  
  Pointed out by:	jhale
  Pointyhat to:	swills
  Feature safe:	yes

Modified:
  head/sysutils/puppet/Makefile

Modified: head/sysutils/puppet/Makefile
==============================================================================
--- head/sysutils/puppet/Makefile	Sun Oct 14 14:39:03 2012	(r305879)
+++ head/sysutils/puppet/Makefile	Sun Oct 14 14:39:47 2012	(r305880)
@@ -59,7 +59,7 @@ RUN_DEPENDS+=	rubygem-bzip2>=0:${PORTSDI
 .endif
 
 .if ${PORT_OPTIONS:MPACKAGE_ROOT}
-.if ! ${PORT_OPTIONS:MPACKAGE_ORIGN}
+.if ! ${PORT_OPTIONS:MPACKAGE_ORIGIN}
 EXTRA_PATCHES+=	${FILESDIR}/optpatch-package_root
 .else
 BROKEN=	PACKAGE_ROOT option patch is incompatable with PACKAGE_ORIGIN patch.
@@ -108,7 +108,7 @@ post-install:
 	${INSTALL} -d ${DOCSDIR}
 	cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}
 .endif
-.if ! ${PORT_OPTIONS:MEXAMPLES}
+.if ${PORT_OPTIONS:MEXAMPLES}
 	cd ${WRKSRC}/examples/ && ${COPYTREE_SHARE} . ${EXAMPLESDIR}
 .endif
 	@${CAT} ${PKGMESSAGE}



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