Skip to content
This repository has been archived by the owner on Oct 22, 2020. It is now read-only.

Commit

Permalink
Merge pull request #65 from keithc-ca/merge
Browse files Browse the repository at this point in the history
Fix merge error
  • Loading branch information
pshipton authored Jul 15, 2020
2 parents 8fd2f74 + 0b6b8a9 commit 4db21d3
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions make/autoconf/jdk-options.m4
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,11 @@ AC_DEFUN_ONCE([JDKOPT_SETUP_DEBUG_SYMBOLS],
[AS_HELP_STRING([--with-native-debug-symbols],
[set the native debug symbol configuration (none, internal, external, zipped) @<:@varying@:>@])],
[
if test "x$OPENJDK_TARGET_OS" = xwindows; then
if test "x$withval" = xinternal; then
AC_MSG_ERROR([Windows does not support the parameter 'internal' for --with-native-debug-symbols])
fi
fi
],
[
if test "x$STATIC_BUILD" = xtrue; then
Expand Down

0 comments on commit 4db21d3

Please sign in to comment.