From 0481de5db50d8078dc9a5995530815a72024e43a Mon Sep 17 00:00:00 2001 From: nobu Date: Sat, 15 Dec 2007 13:27:41 +0000 Subject: [PATCH] * configure.in (BUILTIN_ENCS): splitted command line instead of semicolons for Solaris. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14244 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ configure.in | 4 +++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index d09277caac..3d082bce2c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Sat Dec 15 22:27:39 2007 Nobuyoshi Nakada + + * configure.in (BUILTIN_ENCS): splitted command line instead of + semicolons for Solaris. + Sat Dec 15 21:38:24 2007 Tanaka Akira * lib/timeout.rb: join the background thread to make sure it is dead. diff --git a/configure.in b/configure.in index db7e959d04..bff2f01045 100644 --- a/configure.in +++ b/configure.in @@ -1736,7 +1736,9 @@ fi tr -d '\015' < largefile.h > confdefs.h test -d enc || mkdir enc -BUILTIN_ENCS=["`sed -n '/^BUILTIN_ENCS[ ]*=/{s///;:l;/\\\\$/N;s/\\\\\\n/ /;t l;p}' \"${srcdir}/enc/Makefile.in\"`"] +BUILTIN_ENCS=["`sed -n -e '/^BUILTIN_ENCS[ ]*=/{' \ + -e s/// -e :l -e '/\\\\$/N' -e 's/\\\\\\n/ /' -e 't l' -e p \ + -e '}' \"${srcdir}/enc/Makefile.in\"`"] BUILTIN_ENCS="`echo $BUILTIN_ENCS`" EXTERNAL_ENCS= for e in "${srcdir}/enc"/*.c; do