7160895: tools/launcher/VersionCheck.java attempts to launch .debuginfo

Do not install .debuginfo files in bin dir.

Reviewed-by: ksrini, sspitsyn
This commit is contained in:
Daniel D. Daugherty 2012-04-12 16:23:24 -07:00
parent 1f4653910f
commit 9de05ceb7a

View File

@ -268,6 +268,11 @@ else
$(ZIPEXE) -q $(@F).diz $(@F).debuginfo ; \
$(RM) $(@F).debuginfo ; \
)
# save ZIP'ed debug info with rest of the program's build artifacts
$(MV) $@.diz $(OBJDIR)
else
# save debug info with rest of the program's build artifacts
$(MV) $@.debuginfo $(OBJDIR)
endif
endif # PROGRAM_SUPPORTS_FULL_DEBUG_SYMBOLS
endif # ENABLE_FULL_DEBUG_SYMBOLS