diff options
-rw-r--r-- | www/vtiger/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/www/vtiger/Makefile b/www/vtiger/Makefile index 6e5ff6588f66..2c0aa8ad5113 100644 --- a/www/vtiger/Makefile +++ b/www/vtiger/Makefile @@ -47,7 +47,7 @@ WRITEABLES= cache storage install tabdata.php parent_tabdata.php \ 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 |