diff options
author | obache <obache@pkgsrc.org> | 2011-03-08 11:33:35 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2011-03-08 11:33:35 +0000 |
commit | 22caf9c4efce09728bee7d1ddb41943bbbd8551f (patch) | |
tree | 3d116757dedd64cb3379025975fa3ca00190699a /cross/cc65 | |
parent | 67c841d39c3ca39cdf508e8db7b7d3ee3549a5f5 (diff) | |
download | pkgsrc-22caf9c4efce09728bee7d1ddb41943bbbd8551f.tar.gz |
user-dest installation support.
Diffstat (limited to 'cross/cc65')
-rw-r--r-- | cross/cc65/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/cross/cc65/Makefile b/cross/cc65/Makefile index 05f39ecdd73..ff9607ba877 100644 --- a/cross/cc65/Makefile +++ b/cross/cc65/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2009/06/30 00:07:12 joerg Exp $ +# $NetBSD: Makefile,v 1.4 2011/03/08 11:33:35 obache Exp $ # DISTNAME= cc65-sources-2.12.0 @@ -13,9 +13,13 @@ COMMENT= C cross compiler for 6502 target systems MAKE_JOBS_SAFE= no +PKG_DESTDIR_SUPPORT= user-destdir + WRKSRC= ${WRKDIR}/${PKGNAME_NOREV} MAKE_FILE= make/gcc.mak USE_TOOLS+= gmake perl REPLACE_PERL= src/ca65html/ca65html +INSTALL_MAKE_FLAGS+= PREFIX=${DESTDIR}${PREFIX} + .include "../../mk/bsd.pkg.mk" |