diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-07-26 13:28:17 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-07-26 13:28:17 +0000 |
commit | f9d90e2973a01104829bd8b57b3f599a8a65d491 (patch) | |
tree | 7d7d7b3a0d5c23b8da8bd7d7be69384773846b83 /configure.in | |
parent | a18462b2f3662adec71c4b5b02e582850155c884 (diff) |
* configure.in: add support for as and ASFLAGS. [ruby-dev:29138]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@10616 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 433bde0368..00cbaf7b70 100644 --- a/configure.in +++ b/configure.in @@ -169,6 +169,10 @@ if test -z "$AR"; then AC_CHECK_PROGS(AR, aal, ar) fi +AC_CHECK_TOOL(AS, as) +ASFLAGS=$ASFLAGS +AC_SUBST(ASFLAGS) + case "$target_os" in cygwin*|mingw*) AC_CHECK_TOOL(NM, nm) |