diff options
author | sbd <sbd@pkgsrc.org> | 2012-01-26 02:45:44 +0000 |
---|---|---|
committer | sbd <sbd@pkgsrc.org> | 2012-01-26 02:45:44 +0000 |
commit | b4f2df5567e4a38716af68fefb581e96ac42e319 (patch) | |
tree | 84d0c0761fbe5e3984b882a1bb2b5d2c2519ddc5 /audio/akode-plugins-oss | |
parent | 4e6dd0707cc11eddea6b1ef3d526b4e026d16ad9 (diff) | |
download | pkgsrc-b4f2df5567e4a38716af68fefb581e96ac42e319.tar.gz |
For proper DESTDIR support it should be passed to make as 'DESTDIR=${DESTDIR}'
not 'prefix=${DESTDIR}${PREFIX}'
Diffstat (limited to 'audio/akode-plugins-oss')
-rw-r--r-- | audio/akode-plugins-oss/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/akode-plugins-oss/Makefile b/audio/akode-plugins-oss/Makefile index 84b247a352b..3c7067f2af7 100644 --- a/audio/akode-plugins-oss/Makefile +++ b/audio/akode-plugins-oss/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2011/02/28 14:52:38 wiz Exp $ +# $NetBSD: Makefile,v 1.5 2012/01/26 02:45:44 sbd Exp $ # PKGNAME= akode-plugins-oss-${AKODE_VERSION} @@ -19,7 +19,7 @@ CONFIGURE_ARGS+= --with-oss do-install: cd ${WRKSRC}/akode/plugins/oss_sink && ${SETENV} ${MAKE_ENV} ${MAKE} \ - prefix=${DESTDIR}${PREFIX} install + DESTDIR=${DESTDIR} install .include "../../devel/libltdl/buildlink3.mk" .include "../../audio/akode/buildlink3.mk" |