Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 6 Oct 2013 15:19:24 +0000 (UTC)
From:      Dirk Meyer <dinoex@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r329589 - head/net-mgmt/check_multi
Message-ID:  <201310061519.r96FJOlC018969@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dinoex
Date: Sun Oct  6 15:19:24 2013
New Revision: 329589
URL: http://svnweb.freebsd.org/changeset/ports/329589

Log:
  - use STAGEDIR

Modified:
  head/net-mgmt/check_multi/Makefile

Modified: head/net-mgmt/check_multi/Makefile
==============================================================================
--- head/net-mgmt/check_multi/Makefile	Sun Oct  6 15:16:25 2013	(r329588)
+++ head/net-mgmt/check_multi/Makefile	Sun Oct  6 15:19:24 2013	(r329589)
@@ -14,8 +14,6 @@ COMMENT=	A multi purpose wrapper plugin 
 
 LICENSE=	GPLv2
 
-NO_STAGE=	yes
-
 USES=		shebangfix perl5
 USE_PERL5=	run
 NO_BUILD=	yes
@@ -26,11 +24,11 @@ PLUGIN_DIR=	libexec/nagios
 SHEBANG_FILES=	check_multi
 
 do-install:
-	-${MKDIR} ${PREFIX}/${PLUGIN_DIR}
-	${INSTALL_SCRIPT} ${WRKSRC}/check_multi ${PREFIX}/${PLUGIN_DIR}/
+	-${MKDIR} ${STAGEDIR}${PREFIX}/${PLUGIN_DIR}
+	${INSTALL_SCRIPT} ${WRKSRC}/check_multi ${STAGEDIR}${PREFIX}/${PLUGIN_DIR}/
 .if !defined(NOPORTEXAMPLES)
-	${MKDIR} ${EXAMPLESDIR}
-	@${TAR} -C ${WRKSRC}/contrib -cf - . | ${TAR} -C ${EXAMPLESDIR} -xf -
+	${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
+	@${TAR} -C ${WRKSRC}/contrib -cf - . | ${TAR} -C ${STAGEDIR}${EXAMPLESDIR} -xf -
 .endif
 
 .include <bsd.port.mk>



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