1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* configure.in (target_os): strip -gnu suffix on Linux.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6450 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
eban 2004-06-12 02:17:24 +00:00
parent 21606c6ec5
commit 4fb0b08ffd
2 changed files with 5 additions and 1 deletions

View file

@ -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.

View file

@ -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;;