summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2000-05-28 17:41:43 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2000-05-28 17:41:43 +0000
commit9d05d68fe618978e7b340afa789f75fb1b44bf3d (patch)
tree8699f08729be967ea2c11db6e7ffd32961fae654
parentAdded INSTALL_CHANGE and INSTALL_VARIANT information. (diff)
downloadrtems-9d05d68fe618978e7b340afa789f75fb1b44bf3d.tar.bz2
Changed sed command to avoid severe limitations in Solaris /bin/sed.
Detected by Joel after multiple reports on the rtems-users mailing list. Final fix from Ralf Corsepius.
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 2cf43f734e..5ba2e06d2e 100644
--- a/configure.in
+++ b/configure.in
@@ -47,7 +47,7 @@ RTEMS_CONFIG_SUBDIRS(c)
if test "$target_alias" != "$host_alias"; then
changequote(,)dnl
TARGET_SUBDIRS=`echo "$target_subdirs" | \
- sed -e "s%\([^ ]\+\)%$target_alias/\1%g"`
+ sed -e "s%\([a-zA-Z0-9][a-zA-Z0-9]*\)%${target_alias}/\1%g"`
changequote([,])dnl
else
TARGET_SUBDIRS="$target_subdirs"