Skip to content

Commit 02b29b0

Browse files
committed
8314555: Build with mawk fails on Windows
Backport-of: 3285a1e
1 parent bb3e6e3 commit 02b29b0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

make/hotspot/lib/JvmMapfile.gmk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2013, 2020, Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 2013, 2023, Oracle and/or its affiliates. All rights reserved.
33
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
#
55
# This code is free software; you can redistribute it and/or modify it
@@ -118,7 +118,7 @@ else ifeq ($(call isTargetOs, windows), true)
118118

119119
FILTER_SYMBOLS_AWK_SCRIPT := \
120120
'{ \
121-
if ($$7 ~ /??_7.*@@6B@/ && $$7 !~ /type_info/ && $$7 !~ /lambda/) print $$7; \
121+
if ($$7 ~ /\?\?_7.*@@6B@/ && $$7 !~ /type_info/ && $$7 !~ /lambda/) print $$7; \
122122
}'
123123

124124
else

0 commit comments

Comments
 (0)