Skip to content

Commit f0a76f6

Browse files
committed
ruby_defint.m4: variable names must not contain spaces
1 parent c78895b commit f0a76f6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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)