File tree Expand file tree Collapse file tree 2 files changed +5
-8
lines changed Expand file tree Collapse file tree 2 files changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ The following flags are specific to Lutok's `configure` script:
128
128
detection features regardless of the value of this flag. However, such
129
129
warnings are only fatal when ` --enable-developer ` is set to "yes".
130
130
131
- - ` --with -atf `
131
+ - ` --enable -atf `
132
132
- ** Possible values** : "yes", "no", "auto".
133
133
- ** Default** : "auto"
134
134
Original file line number Diff line number Diff line change @@ -59,14 +59,11 @@ AC_ARG_ENABLE([atf],
59
59
AM_CONDITIONAL([ WITH_ATF] , [ test "x$enable_atf" = "xyes"] )
60
60
61
61
# ATF dependencies
62
- if test "x$enable_atf" = "xyes"; then
63
- ATF_CHECK_CXX([ >= 0.22] )
64
- ATF_CHECK_SH([ >= 0.22] )
65
- else
66
- AC_MSG_NOTICE ( [ ATF support disabled] )
67
- fi
62
+ AS_IF ( [ test "x$enable_atf" = "xyes"] ,[
63
+ ATF_CHECK_CXX([ >= 0.21] )
64
+ ATF_CHECK_SH([ >= 0.21] )
65
+ ] ,[ AC_MSG_NOTICE ( [ ATF support disabled] ) ] )
68
66
69
- ATF_ARG_WITH
70
67
KYUA_DOXYGEN
71
68
KYUA_LUA
72
69
You can’t perform that action at this time.
0 commit comments