This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] [committed] fix sed problem in the toplevel configure


So how $ tries to be converted to an env variable so it causes an error on solaris and
not other targets for some reason.


Well this patch fixes that.

Applied to the mainline as obvious.

Can someone apply this to src also?

Thanks,
Andrew Pinski

2004-03-10 Andrew Pinski <pinskia@physics.uc.edu>

        PR bootstrap/14522
        * configure.in: Fix esacping of $.
        * configure: Regenerate.


Patch:


Index: configure.in
===================================================================
RCS file: /cvs/gcc/gcc/configure.in,v
retrieving revision 1.272
diff -u -p -r1.272 configure.in
--- configure.in	11 Mar 2004 05:01:01 -0000	1.272
+++ configure.in	11 Mar 2004 07:29:22 -0000
@@ -1177,7 +1177,7 @@ if test -d ${srcdir}/gcc; then
     esac
   done

- missing_languages="`echo "$missing_languages" | sed -e s/^,// -e s/,$//`"
+ missing_languages="`echo "$missing_languages" | sed -e s/^,// -e s/,\$//`"
if test "x$missing_languages" != x; then
AC_MSG_ERROR([
The following requested languages were not found: ${missing_languages}])



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]