File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -443,7 +443,7 @@ AC_DEFUN_ONCE([BASIC_SETUP_PANDOC],
443
443
444
444
PANDOC_MARKDOWN_FLAG="markdown"
445
445
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
447
447
AC_MSG_RESULT ( [ yes] )
448
448
PANDOC_MARKDOWN_FLAG="markdown-smart"
449
449
else
Original file line number Diff line number Diff line change 1
1
#
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.
3
3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
#
5
5
# This code is free software; you can redistribute it and/or modify it
@@ -382,7 +382,7 @@ AC_DEFUN_ONCE([BOOTJDK_SETUP_BOOT_JDK],
382
382
# Finally, set some other options...
383
383
384
384
# 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
386
386
BOOT_JDK_JAR_SUPPORTS_DATE=true
387
387
else
388
388
BOOT_JDK_JAR_SUPPORTS_DATE=false
Original file line number Diff line number Diff line change 1
1
#
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.
3
3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
#
5
5
# This code is free software; you can redistribute it and/or modify it
@@ -521,7 +521,7 @@ AC_DEFUN([UTIL_REMOVE_SYMBOLIC_LINKS],
521
521
sym_link_dir=`pwd -P`
522
522
# Resolve file symlinks
523
523
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/'`
525
525
if test "x$ISLINK" == x; then
526
526
# This is not a symbolic link! We are done!
527
527
break
You can’t perform that action at this time.
0 commit comments