mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Fixed the inverted condition
This commit is contained in:
parent
9165fcdfa3
commit
e42d9d8df8
1 changed files with 1 additions and 1 deletions
|
@ -579,7 +579,7 @@ AS_IF([test "$GCC" = yes], [
|
|||
AS_HELP_STRING([--disable-fortify-source],
|
||||
[disable -D_FORTIFY_SOURCE=2 option, which causes link error on mingw]),
|
||||
[fortify_source=$enableval])
|
||||
AS_IF([test "x$fortify_source" = xno], [
|
||||
AS_IF([test "x$fortify_source" != xno], [
|
||||
RUBY_TRY_CFLAGS(-D_FORTIFY_SOURCE=2, [RUBY_APPEND_OPTION(XCFLAGS, -D_FORTIFY_SOURCE=2)])
|
||||
])
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue