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 | d09827ad50b9da30c33ea124a20aa4999b783c90 (patch) | |
tree | 58ab2c06c96548bb85b0a92477e0e0f854414f1f /configure.in | |
parent | 1c499989ee1001e56d72d9b7dfce3641728db217 (diff) | |
download | ruby-d09827ad50b9da30c33ea124a20aa4999b783c90.tar.gz |
* configure.in: add support for as and ASFLAGS. [ruby-dev:29138]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@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 c887ed7b15..02c33e2c81 100644 --- a/configure.in +++ b/configure.in @@ -165,6 +165,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) |