-
Bug
-
Resolution: Fixed
-
P2
-
1.4.0
-
None
-
beta2
-
generic
-
generic
Name: dm26566 Date: 05/22/2001
The following Make errors prevent the TLDA J2RE source bundles from building:
make/java/jvm/Makefile
----------------------
ifndef JAE_ONLY
all:: $(FILES_h)
clobber::
$(RM) -r $(INCLUDEDIR)
endif
The ifndef/else/endif directives should be removed.
make/sun/rmi/Makefile
---------------------
#ifdef JAE_ONLY
TOOLS_SUBDIRS =
#else
TOOLS_SUBDIRS = rmic
#endif
The directives are written in C style (with preceeding #'s), but in
Make, they are comments. The #'s should be removed.
======================================================================