1
0
Fork 0
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:
Nobuyoshi Nakada 2019-12-03 14:51:14 +09:00
parent 9165fcdfa3
commit e42d9d8df8
No known key found for this signature in database
GPG key ID: 4BC7D6DF58D8DF60

View file

@ -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)])
])