-
Bug
-
Resolution: Fixed
-
P3
-
6
-
b86
-
generic
-
generic
> It looks like in file j2se/make/common/Rules.gmk
> >
> > $(JAVAC_CMD) -d $(PCOMPILER_TEMPDIR) $<
> >
> >should be:
> >
> > $(JAVAC_BOOT) -d $(PCOMPILER_TEMPDIR) $<
> >
> >The JAVAC_CMD variable will already have a -d option.
> >This is pretty convoluted stuff.
> >
> >As to why CompileProperties is being compiled, I suspect the time stamps
> >are messed up. We should probably just get rid of the CompileProperties.class
> >file or get rid of the rule that compiles up CompileProperties.
> >We should not need both, but I'd rather just get rid of the class file
>from the SCCS files, I never have liked binary files checked into a
> >workspace.
> >
> > $(JAVAC_CMD) -d $(PCOMPILER_TEMPDIR) $<
> >
> >should be:
> >
> > $(JAVAC_BOOT) -d $(PCOMPILER_TEMPDIR) $<
> >
> >The JAVAC_CMD variable will already have a -d option.
> >This is pretty convoluted stuff.
> >
> >As to why CompileProperties is being compiled, I suspect the time stamps
> >are messed up. We should probably just get rid of the CompileProperties.class
> >file or get rid of the rule that compiles up CompileProperties.
> >We should not need both, but I'd rather just get rid of the class file
>from the SCCS files, I never have liked binary files checked into a
> >workspace.