diff options
| author | Greg Lewis <glewis@FreeBSD.org> | 2004-08-18 07:06:03 +0000 | 
|---|---|---|
| committer | Greg Lewis <glewis@FreeBSD.org> | 2004-08-18 07:06:03 +0000 | 
| commit | e8fea2e4e79c9102261c668e01acaf5215e76b62 (patch) | |
| tree | b3a18d0501d2fff8333cf7ba53660cbd5ec6f35a /java/jdk15 | |
| parent | Go ahead and rush the 2004-08-30 deprecatation since the port is now (diff) | |
. The changes to make in -CURRENT to use MAKEFLAGS make us unable to
  override the MAKEFLAGS ARCH value in the main HotSpot Makefile.  Fix
  this by passing in a blank MAKEFLAGS up front so there is nothing to
  (try to) override.
Submitted by:	truckman
Requested by:	kris
Notes
Notes:
    svn path=/head/; revision=116566
Diffstat (limited to 'java/jdk15')
| -rw-r--r-- | java/jdk15/Makefile | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/java/jdk15/Makefile b/java/jdk15/Makefile index f5956056a7a8..5e4fa299fa56 100644 --- a/java/jdk15/Makefile +++ b/java/jdk15/Makefile @@ -94,7 +94,8 @@ MAKE_ENV=	ALT_BOOTDIR="${JDK14DIR}" \  		LANG="C" \  		JAVA_HOME="" \  		CLASSPATH="" \ -		LD_LIBRARY_PATH="" +		LD_LIBRARY_PATH="" \ +		MAKEFLAGS=""  .if defined(MINIMAL)  MAKE_ENV+=	NO_PLUGIN="YES" \  		NO_JAVAWS="YES" | 
