diff options
author | taca <taca> | 2013-03-19 14:33:11 +0000 |
---|---|---|
committer | taca <taca> | 2013-03-19 14:33:11 +0000 |
commit | 7d07ea226ae164e6885e6ef59d7e871a067c7e9a (patch) | |
tree | b886eedd86267abfe03411919a3e8da14ad416df | |
parent | 081d97287819bcf826b446df73e53b7b20e16e56 (diff) | |
download | pkgsrc-7d07ea226ae164e6885e6ef59d7e871a067c7e9a.tar.gz |
Prevent install *.orig files.
For short timeslot, no PKGREVISION bump.
-rw-r--r-- | www/php-owncloud/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/www/php-owncloud/Makefile b/www/php-owncloud/Makefile index 98c5bdadb84..e8a08caae7c 100644 --- a/www/php-owncloud/Makefile +++ b/www/php-owncloud/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.30 2013/03/19 14:29:55 ryoon Exp $ +# $NetBSD: Makefile,v 1.31 2013/03/19 14:33:11 taca Exp $ # DISTNAME= owncloud-5.0.0 @@ -48,8 +48,8 @@ FILES_SUBST+= WWWGRP=${APACHE_GROUP} WWWOWN=${APACHE_USER} \ OC_DIR=${OC_DIR} do-install: - cd ${WRKDIR} && pax -rw -pmp owncloud \ - ${DESTDIR}${PREFIX}/share + cd ${WRKDIR} && ${FIND} owncloud -type f \! -name '*.orig' -print | \ + pax -rw -pmp ${DESTDIR}${PREFIX}/share .include "../../lang/php/phpversion.mk" .include "../../mk/bsd.pkg.mk" |