diff options
| author | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-06-12 02:17:24 +0000 |
|---|---|---|
| committer | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-06-12 02:17:24 +0000 |
| commit | d2c40a8ad8167af67dbf4470096852dad1d25b5e (patch) | |
| tree | 1dbf8e665d2cdeb1f4013ba580b64c2440de9680 | |
| parent | 2a23e55671b6f2ad8b4778f484e556d92644a5c5 (diff) | |
| download | ruby-d2c40a8ad8167af67dbf4470096852dad1d25b5e.tar.gz ruby-d2c40a8ad8167af67dbf4470096852dad1d25b5e.tar.xz ruby-d2c40a8ad8167af67dbf4470096852dad1d25b5e.zip | |
* configure.in (target_os): strip -gnu suffix on Linux.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6450 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | configure.in | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Sat Jun 12 11:15:53 2004 WATANABE Hirofumi <eban@ruby-lang.org> + + * configure.in (target_os): strip -gnu suffix on Linux. + Fri Jun 11 22:08:50 2004 Yukihiro Matsumoto <matz@ruby-lang.org> * array.c: remove #indexes, #indices. diff --git a/configure.in b/configure.in index 6160643eb..0358f1d7e 100644 --- a/configure.in +++ b/configure.in @@ -72,6 +72,7 @@ if test "$program_prefix" = NONE; then program_prefix= fi AC_CANONICAL_TARGET +target_os=`echo $target_os | sed 's/linux-gnu$/linux/;s/linux-gnu/linux-/'` dnl checks for fat-binary AC_ARG_ENABLE(fat-binary, @@ -782,7 +783,6 @@ case "$target_os" in linux*) if test "$rb_cv_binary_elf" = no; then with_dln_a_out=yes - target_os=${target_os}-a_out else LDFLAGS="$LDFLAGS -rdynamic" fi;; |
