On Thu, Aug 26, 2010 at 4:32 PM, Chris Sutcliffe <[email protected]> wrote: > On 26 August 2010 09:01, Ozkan Sezer <[email protected]> wrote: >> Ah! Chris, thank you very much! That escaped my attention. > > I felt bad myself, in that I ran in to the same issue back in 2008. > Between building the mingw.org make 3.81 and 3.82 I had a HD failure > and forgot the 'sed' step myself which resulted in the broken 3.82-1 > release. > >> What is the exact sed script you used? (escaping the ' : and ; >> are problematic and I feel rusty with sed.) > > I'm by no means a 'sed' guru, so the script I came up with is very basic: > > mv config.h config.orig ; sed -e 's/:/;/' config.orig > config.h
Thanks. However this is a problem with the make configury: exporting PATH_SEPARATOR to something else makes configury fail on linux therefore cross-compilation is broken (and I always compqile on linux) Maybe the better solution to this would be a patch like the following? Index: make.h =================================================================== RCS file: /sources/make/make/make.h,v retrieving revision 1.144 diff -u -r1.144 make.h --- make.h 20 Jul 2010 13:12:06 -0000 1.144 +++ make.h 26 Aug 2010 12:30:03 -0000 @@ -305,6 +305,9 @@ #define N_(msgid) gettext_noop (msgid) #define S_(msg1,msg2,num) ngettext (msg1,msg2,num) +/* workaround for cross-compilations. */ +#undef PATH_SEPARATOR_CHAR + /* Handle other OSs. */ #ifndef PATH_SEPARATOR_CHAR # if defined(HAVE_DOS_PATHS) Ideas? > > Cheers! > > Chris > > -- > Chris Sutcliffe > http://emergedesktop.org > http://www.google.com/profiles/ir0nh34d > -- Ozkan ------------------------------------------------------------------------------ Sell apps to millions through the Intel(R) Atom(Tm) Developer Program Be part of this innovative community and reach millions of netbook users worldwide. Take advantage of special opportunities to increase revenue and speed time-to-market. Join now, and jumpstart your future. http://p.sf.net/sfu/intel-atom-d2d _______________________________________________ Mingw-w64-public mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/mingw-w64-public
