diff options
author | jwise <jwise> | 2000-01-13 20:13:38 +0000 |
---|---|---|
committer | jwise <jwise> | 2000-01-13 20:13:38 +0000 |
commit | 22dc42531f742b23e2f731eea5ff614f576732a3 (patch) | |
tree | 7dd1d7fa15c6bb294ed23607df98cc5103d151d0 /lang | |
parent | da2096f29fccb8a380e9a6ab3fa4ed43e8db1621 (diff) | |
download | pkgsrc-22dc42531f742b23e2f731eea5ff614f576732a3.tar.gz |
Set NO_MTREE, since we modify PREFIX, and don't want all sorts of empty
directories created under JAVA_HOME.
Is there a cleaner way to do this?
Diffstat (limited to 'lang')
-rw-r--r-- | lang/jdk/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lang/jdk/Makefile b/lang/jdk/Makefile index 1374aa392f7..fb97ccc9113 100644 --- a/lang/jdk/Makefile +++ b/lang/jdk/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 2000/01/11 12:35:07 hubertf Exp $ +# $NetBSD: Makefile,v 1.13 2000/01/13 20:13:38 jwise Exp $ # VERSION=1.1.8 @@ -19,6 +19,8 @@ JDK_HOME:= ${LOCALBASE}/java WRKSRC= ${WRKDIR}/jdk${VERSION} NO_BUILD= yes +# since we change PREFIX: +NO_MTREE= yes MESSAGE_FILE= ${WRKDIR}/.MESSAGE ONLY_FOR_PLATFORM= NetBSD-*-i386 @@ -34,5 +36,8 @@ do-install: .include "../../mk/bsd.pkg.mk" +show-shlib-type: + echo a.out + # This needs to be after bsd.pkg.mk PREFIX:= ${JDK_HOME} |