Skip to content

Commit 9baeb54

Browse files
author
duke
committedFeb 21, 2023
Automatic merge of jdk:master into master
2 parents b9d0876 + f319c92 commit 9baeb54

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed
 

‎make/autoconf/basic_tools.m4

+1-1
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ AC_DEFUN_ONCE([BASIC_SETUP_PANDOC],
443443
444444
PANDOC_MARKDOWN_FLAG="markdown"
445445
AC_MSG_CHECKING([if the pandoc smart extension needs to be disabled for markdown])
446-
if $PANDOC --list-extensions | $GREP -q '\+smart'; then
446+
if $PANDOC --list-extensions | $GREP -q '+smart'; then
447447
AC_MSG_RESULT([yes])
448448
PANDOC_MARKDOWN_FLAG="markdown-smart"
449449
else

‎make/autoconf/boot-jdk.m4

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2011, 2022, Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 2011, 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
@@ -382,7 +382,7 @@ AC_DEFUN_ONCE([BOOTJDK_SETUP_BOOT_JDK],
382382
# Finally, set some other options...
383383
384384
# Determine if the boot jdk jar supports the --date option
385-
if $JAR --help 2>&1 | $GREP -q "\-\-date=TIMESTAMP"; then
385+
if $JAR --help 2>&1 | $GREP -q -e "--date=TIMESTAMP"; then
386386
BOOT_JDK_JAR_SUPPORTS_DATE=true
387387
else
388388
BOOT_JDK_JAR_SUPPORTS_DATE=false

‎make/autoconf/util_paths.m4

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2011, 2020, Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 2011, 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
@@ -521,7 +521,7 @@ AC_DEFUN([UTIL_REMOVE_SYMBOLIC_LINKS],
521521
sym_link_dir=`pwd -P`
522522
# Resolve file symlinks
523523
while test $COUNTER -lt 20; do
524-
ISLINK=`$LS -l $sym_link_dir/$sym_link_file | $GREP '\->' | $SED -e 's/.*-> \(.*\)/\1/'`
524+
ISLINK=`$LS -l $sym_link_dir/$sym_link_file | $GREP -e '->' | $SED -e 's/.*-> \(.*\)/\1/'`
525525
if test "x$ISLINK" == x; then
526526
# This is not a symbolic link! We are done!
527527
break

0 commit comments

Comments
 (0)
Please sign in to comment.