mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
ARFLAGS needs a space
* configure.in (ARFLAGS): needs a trailing space to separate from the target library name, whereas VC linker flag must not separate from its argument. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53800 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
f8cc2fb9c1
commit
0c3a54e63b
1 changed files with 1 additions and 1 deletions
|
@ -571,7 +571,7 @@ AC_CACHE_CHECK([for $AR D option], [rb_cv_ar_D_option], [
|
|||
AS_IF([$AR rcD conftest.a > /dev/null 2>&1 && rm conftest.a],
|
||||
[rb_cv_ar_D_option=yes], [rb_cv_ar_D_option=no])
|
||||
])
|
||||
AS_IF([test "$rb_cv_ar_D_option" = yes], [ARFLAGS=rcD], [ARFLAGS=rcu])
|
||||
AS_IF([test "$rb_cv_ar_D_option" = yes], [ARFLAGS='rcD '], [ARFLAGS='rcu '])
|
||||
AC_SUBST(ARFLAGS)
|
||||
|
||||
AC_CHECK_TOOL(AS, as)
|
||||
|
|
Loading…
Add table
Reference in a new issue