Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 5 Feb 2014 17:59:02 +0000 (UTC)
From:      John Marino <marino@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r342807 - head/www/vtiger
Message-ID:  <201402051759.s15Hx2m4065109@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: marino
Date: Wed Feb  5 17:59:02 2014
New Revision: 342807
URL: http://svnweb.freebsd.org/changeset/ports/342807
QAT: https://qat.redports.org/buildarchive/r342807/

Log:
  www/vtiger: Don't use -v option on install
  
  DragonFly install program doesn't support verbose option.
  Unmask installation step instead (Hi danfe!)

Modified:
  head/www/vtiger/Makefile

Modified: head/www/vtiger/Makefile
==============================================================================
--- head/www/vtiger/Makefile	Wed Feb  5 17:54:49 2014	(r342806)
+++ head/www/vtiger/Makefile	Wed Feb  5 17:59:02 2014	(r342807)
@@ -47,7 +47,7 @@ WRITEABLES=	cache storage install tabdat
 
 do-patch:
 .for DIR in ${PATCHDIRS}
-	@${INSTALL_DATA} -v ${WRKDIR}/${DIR}/*.php ${WRKSRC}/${DIR}
+	${INSTALL_DATA} ${WRKDIR}/${DIR}/*.php ${WRKSRC}/${DIR}
 .endfor
 
 do-install:
@@ -55,9 +55,9 @@ do-install:
 	${MKDIR} ${WWWDIR}/${DIR}
 	( cd ${WRKSRC} && ${COPYTREE_SHARE} ${DIR} ${WWWDIR} )
 .endfor
-	@( ${FIND} ${WRKSRC} -type f -maxdepth 1 \( -name \*.php -or -name \*.properties \
+	( ${FIND} ${WRKSRC} -type f -maxdepth 1 \( -name \*.php -or -name \*.properties \
 		-or -name Copyright.txt \) -and -not -name config\* ; ${ECHO} ${WWWDIR} ) \
-		| ${XARGS} ${INSTALL_DATA} -v
+		| ${XARGS} ${INSTALL_DATA}
 .for FILE in ${CONFIGS}
 	${INSTALL_DATA}	${WRKSRC}/${FILE} ${WWWDIR}/${FILE}.sample
 .endfor



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