diff options
author | Peter Kokot <peterkokot@gmail.com> | 2018-07-30 06:38:59 +0200 |
---|---|---|
committer | Peter Kokot <peterkokot@gmail.com> | 2018-07-30 06:38:59 +0200 |
commit | f2e4de8b567a632f132fe0fdc34bbb75fcf01518 (patch) | |
tree | eeab4f321ceb523d8f6134e8d7e37d732431811d /acinclude.m4 | |
parent | 6399fa1eeafea21993dd42579a599e046fefc030 (diff) | |
download | php-git-f2e4de8b567a632f132fe0fdc34bbb75fcf01518.tar.gz |
Fix AC_RUN_IFELSE calls when cross-compiling
AC_RUN_IFELSE program can't be run when cross-compiling. This fix removes
warnings given by autotools scripts.
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index 6c99085457..6ad8070c9d 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -3243,7 +3243,7 @@ int main() { AC_MSG_RESULT([yes]) ], [ AC_MSG_RESULT([no]) - ], []) + ], [AC_MSG_RESULT([no])]) fi AC_DEFINE_UNQUOTED(AS_TR_CPP([PHP_HAVE_$1_INSTRUCTIONS]), [$have_ext_instructions], [Whether the compiler supports $1 instructions]) |