diff options
author | Nikita Popov <nikita.ppv@gmail.com> | 2020-08-08 10:38:31 +0200 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2020-08-08 10:38:51 +0200 |
commit | 05478e985eb50c473054b4f1bf174f48ead78784 (patch) | |
tree | 3a6b69b6790d2802b1fd4b09fb759a29fa887ec0 /build/php.m4 | |
parent | e208cb23c6bda00737a9bfd227b82beaba350fa7 (diff) | |
download | php-git-05478e985eb50c473054b4f1bf174f48ead78784.tar.gz |
Fix m4 quotation
We should not try to expand AX_CHECK_COMPILE_FLAG inside the
error message...
Diffstat (limited to 'build/php.m4')
-rw-r--r-- | build/php.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/php.m4 b/build/php.m4 index b827679b3e..0d0fb61fbe 100644 --- a/build/php.m4 +++ b/build/php.m4 @@ -305,7 +305,7 @@ fi ]) AC_DEFUN([PHP_CHECK_GCC_ARG],[ - AC_MSG_ERROR([Use AX_CHECK_COMPILE_FLAG instead]) + AC_MSG_ERROR([[Use AX_CHECK_COMPILE_FLAG instead]]) ]) dnl |