aboutsummaryrefslogtreecommitdiffstats
path: root/config/user-frame-larger-than.m4
diff options
context:
space:
mode:
authorChunwei Chen <[email protected]>2014-03-15 14:24:40 +0800
committerBrian Behlendorf <[email protected]>2014-03-20 12:11:57 -0700
commita15dac42df202bf9e6825a62b81a36ad449ef53f (patch)
tree7384b784a52f640880a09023e47a7c05bb9b9958 /config/user-frame-larger-than.m4
parent26b42f3f9d03f85cc7966dc2fe4dfe9216601b0e (diff)
config: compile test rather than run test
When testing compiler flags, we only need to do compile test. Otherwise, configure will fail with "configure: error: cannot run test program while cross compiling" when cross compiling. Signed-off-by: Chunwei Chen <[email protected]> Signed-off-by: Brian Behlendorf <[email protected]> Closes #2191
Diffstat (limited to 'config/user-frame-larger-than.m4')
-rw-r--r--config/user-frame-larger-than.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/config/user-frame-larger-than.m4 b/config/user-frame-larger-than.m4
index 7ad86220d..e0828eca0 100644
--- a/config/user-frame-larger-than.m4
+++ b/config/user-frame-larger-than.m4
@@ -7,7 +7,7 @@ AC_DEFUN([ZFS_AC_CONFIG_USER_FRAME_LARGER_THAN], [
saved_flags="$CFLAGS"
CFLAGS="$CFLAGS -Wframe-larger-than=1024"
- AC_RUN_IFELSE([AC_LANG_PROGRAM([], [])],
+ AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [])],
[
FRAME_LARGER_THAN=-Wframe-larger-than=1024
AC_MSG_RESULT([yes])