Skip to content

Commit 8ddcbb4

Browse files
committed
build: Remove backticks from configure.ac
1 parent 1189b6a commit 8ddcbb4

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

configure.ac

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -555,8 +555,8 @@ case $host in
555555
dnl It's safe to add these paths even if the functionality is disabled by
556556
dnl the user (--without-wallet or --without-gui for example).
557557

558-
bdb_prefix=`$BREW --prefix berkeley-db4 2>/dev/null`
559-
qt5_prefix=`$BREW --prefix qt5 2>/dev/null`
558+
bdb_prefix=$($BREW --prefix berkeley-db4 2>/dev/null)
559+
qt5_prefix=$($BREW --prefix qt5 2>/dev/null)
560560
if test x$bdb_prefix != x; then
561561
CPPFLAGS="$CPPFLAGS -I$bdb_prefix/include"
562562
LIBS="$LIBS -L$bdb_prefix/lib"
@@ -987,7 +987,7 @@ AC_LINK_IFELSE(
987987
[[ #include <cstdlib> ]],
988988
[[ int nErr = std::system(""); ]]
989989
)],
990-
[ AC_MSG_RESULT(yes); AC_DEFINE(HAVE_STD__SYSTEM, 1, Define to 1 if you have the `std::system' function.)],
990+
[ AC_MSG_RESULT(yes); AC_DEFINE(HAVE_STD__SYSTEM, 1, Define to 1 if std::system is available.)],
991991
[ AC_MSG_RESULT(no) ]
992992
)
993993

@@ -997,11 +997,10 @@ AC_LINK_IFELSE(
997997
[[ ]],
998998
[[ int nErr = ::_wsystem(""); ]]
999999
)],
1000-
[ AC_MSG_RESULT(yes); AC_DEFINE(HAVE_WSYSTEM, 1, Define to 1 if you have the `::wsystem' function.)],
1000+
[ AC_MSG_RESULT(yes); AC_DEFINE(HAVE_WSYSTEM, 1, Define to 1 if ::wsystem is available.)],
10011001
[ AC_MSG_RESULT(no) ]
10021002
)
10031003

1004-
# Define to 1 if std::system or ::wsystem (Windows) is available
10051004
AC_DEFINE([HAVE_SYSTEM], [HAVE_STD__SYSTEM || HAVE_WSYSTEM], [std::system or ::wsystem])
10061005

10071006
LEVELDB_CPPFLAGS=

0 commit comments

Comments
 (0)