Skip to content

Commit efd4fe1

Browse files
committed
build: consistently quote AC_MSG_* arguments
1 parent c397326 commit efd4fe1

File tree

2 files changed

+113
-113
lines changed

2 files changed

+113
-113
lines changed

build-aux/m4/bitcoin_qt.m4

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -192,8 +192,8 @@ AC_DEFUN([BITCOIN_QT_CONFIGURE],[
192192
choke
193193
#endif
194194
]])],
195-
[ AC_MSG_RESULT(yes); QT_PIE_FLAGS=$PIE_FLAGS ],
196-
[ AC_MSG_RESULT(no); QT_PIE_FLAGS=$PIC_FLAGS]
195+
[ AC_MSG_RESULT([yes]); QT_PIE_FLAGS=$PIE_FLAGS ],
196+
[ AC_MSG_RESULT([no]); QT_PIE_FLAGS=$PIC_FLAGS]
197197
)
198198
CPPFLAGS=$TEMP_CPPFLAGS
199199
CXXFLAGS=$TEMP_CXXFLAGS
@@ -214,8 +214,8 @@ AC_DEFUN([BITCOIN_QT_CONFIGURE],[
214214
choke
215215
#endif
216216
]])],
217-
[ AC_MSG_RESULT(no)],
218-
[ AC_MSG_RESULT(yes); QT_PIE_FLAGS=$PIC_FLAGS]
217+
[ AC_MSG_RESULT([no])],
218+
[ AC_MSG_RESULT([yes]); QT_PIE_FLAGS=$PIC_FLAGS]
219219
)
220220
CPPFLAGS=$TEMP_CPPFLAGS
221221
])
@@ -239,7 +239,7 @@ AC_DEFUN([BITCOIN_QT_CONFIGURE],[
239239
;;
240240
*mingw*)
241241
BITCOIN_QT_CHECK([
242-
AX_CHECK_LINK_FLAG([-mwindows], [QT_LDFLAGS="$QT_LDFLAGS -mwindows"], [AC_MSG_WARN(-mwindows linker support not detected)])
242+
AX_CHECK_LINK_FLAG([-mwindows], [QT_LDFLAGS="$QT_LDFLAGS -mwindows"], [AC_MSG_WARN([-mwindows linker support not detected])])
243243
])
244244
esac
245245

0 commit comments

Comments
 (0)