-
Bug
-
Resolution: Cannot Reproduce
-
P5
-
6
-
generic
-
generic
The images-clobber target in make/common/Release.gmk runs these commands:
$(RM) -r $(TMP_JRE_IMAGE_DIR)
$(RM) -r $(JDK_IMAGE_DIR)
$(RM) -r $(JDK_DEBUG_IMAGE_DIR)
but the clobber targer, which has the images-clobber target as a
dependency (== subrouting in Makefile talk) does:
$(RM) -r $(JDK_IMAGE_DIR) $(JDK_DEBUG_IMAGE_DIR) $(JRE_IMAGE_DIR)
The code should be removed from the `clobber' target.
Similarly, the following command occurs twice in the `images-clobber' target:
$(RM) -r $(TMPDIR)/jre $(TMPDIR)/jdk
###@###.### 2004-02-01
$(RM) -r $(TMP_JRE_IMAGE_DIR)
$(RM) -r $(JDK_IMAGE_DIR)
$(RM) -r $(JDK_DEBUG_IMAGE_DIR)
but the clobber targer, which has the images-clobber target as a
dependency (== subrouting in Makefile talk) does:
$(RM) -r $(JDK_IMAGE_DIR) $(JDK_DEBUG_IMAGE_DIR) $(JRE_IMAGE_DIR)
The code should be removed from the `clobber' target.
Similarly, the following command occurs twice in the `images-clobber' target:
$(RM) -r $(TMPDIR)/jre $(TMPDIR)/jdk
###@###.### 2004-02-01
- relates to
-
JDK-6704165 JDK_DEBUG_IMAGE_DIR used in jdk/make/common/Release.gmk but not defined
-
- Resolved
-