Skip to content

Commit 80762df

Browse files
committed
build: consistently quote arguments in AC_ARG_VAR()
1 parent e6749a4 commit 80762df

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

build-aux/m4/bitcoin_find_bdb48.m4

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ dnl Distributed under the MIT software license, see the accompanying
33
dnl file COPYING or http://www.opensource.org/licenses/mit-license.php.
44

55
AC_DEFUN([BITCOIN_FIND_BDB48],[
6-
AC_ARG_VAR(BDB_CFLAGS, [C compiler flags for BerkeleyDB, bypasses autodetection])
7-
AC_ARG_VAR(BDB_LIBS, [Linker flags for BerkeleyDB, bypasses autodetection])
6+
AC_ARG_VAR([BDB_CFLAGS], [C compiler flags for BerkeleyDB, bypasses autodetection])
7+
AC_ARG_VAR([BDB_LIBS], [Linker flags for BerkeleyDB, bypasses autodetection])
88
99
if test "x$use_bdb" = "xno"; then
1010
use_bdb=no

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ BITCOIN_MP_NODE_NAME=bitcoin-node
3030
BITCOIN_MP_GUI_NAME=bitcoin-gui
3131

3232
dnl Unless the user specified ARFLAGS, force it to be cr
33-
AC_ARG_VAR(ARFLAGS, [Flags for the archiver, defaults to <cr> if not set])
33+
AC_ARG_VAR([ARFLAGS], [Flags for the archiver, defaults to <cr> if not set])
3434
if test "x${ARFLAGS+set}" != "xset"; then
3535
ARFLAGS="cr"
3636
fi
@@ -117,7 +117,7 @@ AC_PATH_TOOL([OBJCOPY], [objcopy])
117117
AC_PATH_PROG([DOXYGEN], [doxygen])
118118
AM_CONDITIONAL([HAVE_DOXYGEN], [test -n "$DOXYGEN"])
119119

120-
AC_ARG_VAR(PYTHONPATH, Augments the default search path for python module files)
120+
AC_ARG_VAR([PYTHONPATH], [Augments the default search path for python module files])
121121

122122
AC_ARG_ENABLE([wallet],
123123
[AS_HELP_STRING([--disable-wallet],

0 commit comments

Comments
 (0)