diff options
author | joerg <joerg> | 2006-11-03 08:40:36 +0000 |
---|---|---|
committer | joerg <joerg> | 2006-11-03 08:40:36 +0000 |
commit | 304fcef1b96eacad4433c6eb680006f179bb6206 (patch) | |
tree | 124872b4fbca931cdb4330ff175c3d9544a24401 /graphics | |
parent | 5927cb5a1bf6a9c2ccafaf41edb2cd34d01b41e9 (diff) | |
download | pkgsrc-304fcef1b96eacad4433c6eb680006f179bb6206.tar.gz |
DESTDIR support.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/glu/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/graphics/glu/Makefile b/graphics/glu/Makefile index 86f76cb6240..628f703ae8b 100644 --- a/graphics/glu/Makefile +++ b/graphics/glu/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.47 2006/08/01 21:40:20 jlam Exp $ +# $NetBSD: Makefile,v 1.48 2006/11/03 08:40:36 joerg Exp $ PKGNAME= glu-${MESA_VERSION} COMMENT= GLU polygon tessellation facility for Mesa @@ -17,11 +17,11 @@ pre-build: cd ${WRKSRC} && ${RM} -fr src/mesa src/glut src/glw progs do-install: - ${INSTALL_DATA_DIR} ${PREFIX}/include/GL + ${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/include/GL cd ${WRKSRC}/include/GL; for hdr in \ glu.h glu_mangle.h; \ do \ - ${INSTALL_DATA} $${hdr} ${PREFIX}/include/GL; \ + ${INSTALL_DATA} $${hdr} ${DESTDIR}${PREFIX}/include/GL; \ done .include "../../mk/bsd.pkg.mk" |