Skip to content

Commit e6973f5

Browse files
nobuaidenfoxivey
authored andcommitted
ruby_defint.m4: variable names must not contain spaces
1 parent d861e07 commit e6973f5

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tool/m4/ruby_defint.m4

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ typedef $1 t; int s = sizeof(t) == 42;])],
1717
["${ac_cv_sizeof___int128@%:@*:}"], [ rb_cv_type_$1="m4_if([$3], [], [], [$3 ])__int128"],
1818
[ rb_cv_type_$1=no])])])
1919
AS_IF([test "${rb_cv_type_$1}" != no], [
20-
type="${rb_cv_type_$1@%:@@%:@unsigned }"
20+
type="${rb_cv_type_$1@%:@@%:@*signed }"
21+
AS_IF([test "$type" = "long long"], [type=long_long])
2122
AS_IF([test "$type" != yes && eval 'test -n "${ac_cv_sizeof_'$type'+set}"'], [
2223
eval cond='"${ac_cv_sizeof_'$type'}"'
2324
AS_CASE([$cond], [*:*], [

0 commit comments

Comments
 (0)