Skip to content

Commit ef58a80

Browse files
committed
8353709: Debug symbols bundle should contain full debug files when building --with-external-symbols-in-bundles=public
Backport-of: 60fbf73fc492ad9fff83fb4540e2d01311406287
1 parent a00a612 commit ef58a80

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

make/Bundles.gmk

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,10 @@ ifneq ($(filter product-bundles% legacy-bundles, $(MAKECMDGOALS)), )
245245
)
246246

247247
JDK_SYMBOLS_BUNDLE_FILES := \
248-
$(call FindFiles, $(SYMBOLS_IMAGE_DIR))
248+
$(filter-out \
249+
%.stripped.pdb, \
250+
$(call FindFiles, $(SYMBOLS_IMAGE_DIR)) \
251+
)
249252

250253
TEST_DEMOS_BUNDLE_FILES := $(filter $(JDK_DEMOS_IMAGE_HOMEDIR)/demo/%, \
251254
$(ALL_JDK_DEMOS_FILES))

0 commit comments

Comments
 (0)