Skip to content

Commit bb6538b

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

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
@@ -246,7 +246,10 @@ ifneq ($(filter product-bundles% legacy-bundles, $(MAKECMDGOALS)), )
246246
)
247247

248248
JDK_SYMBOLS_BUNDLE_FILES := \
249-
$(call FindFiles, $(SYMBOLS_IMAGE_DIR))
249+
$(filter-out \
250+
%.stripped.pdb, \
251+
$(call FindFiles, $(SYMBOLS_IMAGE_DIR)) \
252+
)
250253

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

0 commit comments

Comments
 (0)