Skip to content

Commit 07b580b

Browse files
committed
8353709: Debug symbols bundle should contain full debug files when building --with-external-symbols-in-bundles=public
Backport-of: bc441e39dbcbc9114dfb8cf7da06b65ff5b7a5bb
1 parent 1f039fe commit 07b580b

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
@@ -242,7 +242,10 @@ ifneq ($(filter product-bundles% legacy-bundles, $(MAKECMDGOALS)), )
242242
)
243243

244244
JDK_SYMBOLS_BUNDLE_FILES := \
245-
$(call FindFiles, $(SYMBOLS_IMAGE_DIR))
245+
$(filter-out \
246+
%.stripped.pdb, \
247+
$(call FindFiles, $(SYMBOLS_IMAGE_DIR)) \
248+
)
246249

247250
TEST_DEMOS_BUNDLE_FILES := $(filter $(JDK_DEMOS_IMAGE_HOMEDIR)/demo/%, \
248251
$(ALL_JDK_DEMOS_FILES))

0 commit comments

Comments
 (0)