aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--configure.in4
2 files changed, 8 insertions, 1 deletions
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 <nobu@ruby-lang.org>
+
+ * configure.in (BUILTIN_ENCS): splitted command line instead of
+ semicolons for Solaris.
+
Sat Dec 15 21:38:24 2007 Tanaka Akira <akr@fsij.org>
* 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