diff options
author | heinz <heinz@pkgsrc.org> | 2007-08-23 20:27:19 +0000 |
---|---|---|
committer | heinz <heinz@pkgsrc.org> | 2007-08-23 20:27:19 +0000 |
commit | 6615d30cc771104c0fc9484b273d9cb04c58aa52 (patch) | |
tree | ce1950990d3ee1178be36f4c83eaae733a5fecd3 /www | |
parent | e017e857821bf1060ba8c7906e7fd7b60a02194f (diff) | |
download | pkgsrc-6615d30cc771104c0fc9484b273d9cb04c58aa52.tar.gz |
Fixed installation to DESTDIR in post-install target.
Diffstat (limited to 'www')
-rw-r--r-- | www/firefox/Makefile.common | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/firefox/Makefile.common b/www/firefox/Makefile.common index 19c530cbb85..da5be2bad0b 100644 --- a/www/firefox/Makefile.common +++ b/www/firefox/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.22 2007/06/18 21:33:32 dmcmahill Exp $ +# $NetBSD: Makefile.common,v 1.23 2007/08/23 20:27:19 heinz Exp $ MOZ_DIST_VER?= ${MOZ_VER} DISTNAME?= mozilla-${MOZ_DIST_VER}-source @@ -201,7 +201,7 @@ do-install: ${SETENV} ${SCRIPTS_ENV} DESTDIR=${DESTDIR} ${SH} ${FILESDIR:Q}/moz-install post-install: - ${FIND} ${PREFIX}/lib/${MOZILLA}/defaults -type f -exec ${CHMOD} u+w {} \; + ${FIND} ${DESTDIR:Q}${PREFIX:Q}/lib/${MOZILLA}/defaults -type f -exec ${CHMOD} u+w {} \; .include "../../mk/pthread.buildlink3.mk" |