From 9de05ceb7a3614cd1a1d3eecf41bc3570fcaee55 Mon Sep 17 00:00:00 2001 From: "Daniel D. Daugherty" Date: Thu, 12 Apr 2012 16:23:24 -0700 Subject: [PATCH] 7160895: tools/launcher/VersionCheck.java attempts to launch .debuginfo Do not install .debuginfo files in bin dir. Reviewed-by: ksrini, sspitsyn --- jdk/make/common/Program.gmk | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/jdk/make/common/Program.gmk b/jdk/make/common/Program.gmk index 5cc83429b27..4e211d84600 100644 --- a/jdk/make/common/Program.gmk +++ b/jdk/make/common/Program.gmk @@ -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