From 7ec7a135bffa457eae4724ef8bee955212c6dd2f Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 20 Apr 2007 07:04:35 +0000 Subject: * configure.in (LIBPATHFLAG, RPATHFLAG): no needs to be quoted, it is done by libpathflag in mkmf.rb. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@12205 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ configure.in | 8 ++++---- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 31ce18a72..d07f6878b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Fri Apr 20 16:05:22 2007 Nobuyoshi Nakada + + * configure.in (LIBPATHFLAG, RPATHFLAG): no needs to be quoted, + it is done by libpathflag in mkmf.rb. + Fri Apr 20 12:27:04 2007 Nobuyoshi Nakada * lib/optparse.rb: fix to override conv proc. diff --git a/configure.in b/configure.in index 58c049c27..1ed7542ff 100644 --- a/configure.in +++ b/configure.in @@ -941,7 +941,7 @@ AC_SUBST(DLEXT2)dnl AC_SUBST(LIBEXT)dnl STATIC= -: ${LIBPATHFLAG=' -L"%s"'} +: ${LIBPATHFLAG=' -L%s'} : ${PATHFLAG=''} if test "$with_dln_a_out" != yes; then @@ -1005,7 +1005,7 @@ if test "$with_dln_a_out" != yes; then rb_cv_dlopen=yes ;; interix*) : ${LDSHARED="$CC -shared"} XLDFLAGS="$XLDFLAGS -Wl,-E" - LIBPATHFLAG=" -L'%1\$-s'" + LIBPATHFLAG=" -L%1\$-s" rb_cv_dlopen=yes ;; freebsd*|dragonfly*) : ${LDSHARED="$CC -shared"} if test "$rb_cv_binary_elf" = yes; then @@ -1085,8 +1085,8 @@ if test "$with_dln_a_out" != yes; then [ --disable-rpath embed run path into extension libraries.], [enable_rpath=$enableval], [enable_rpath="$rb_cv_binary_elf"]) if test "$enable_rpath" = yes; then - LIBPATHFLAG=" -L'%1\$-s'" - RPATHFLAG=" ${linker_flag}-R'%1\$-s'" + LIBPATHFLAG=" -L%1\$-s" + RPATHFLAG=" ${linker_flag}-R%1\$-s" fi fi if test "${LDSHAREDXX}" = ""; then -- cgit