From 9d05d68fe618978e7b340afa789f75fb1b44bf3d Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Sun, 28 May 2000 17:41:43 +0000 Subject: [PATCH] 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. --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"