|
From: Erick v. R. <er...@va...> - 2003-02-10 16:42:30
|
You you replaced the AC_SUBST_FILE with AC_SUBST? When change those lines in the /support/cpp2/configure.in file I get the following errors sed: 79: conftest.s1: filename expected conftest is also the test that crashes in to console. (logging tool) So this hack doesn't seem to be working for me :( Any other ideas? Erick On maandag, feb 10, 2003, at 10:05 Europe/Amsterdam, Michael Hope wrote: > I've seen this when trying to build on my iBook - there's a problem > with > the script using an unexpanded macro on a file using sed. > > I hacked configure.in to work around it: > -AC_SUBST_FILE(target_overrides) > -AC_SUBST_FILE(host_overrides) > +AC_SUBST(target_overrides) > +AC_SUBST(host_overrides) > AC_SUBST(cross_defines) > -AC_SUBST_FILE(cross_overrides) > -AC_SUBST_FILE(build_overrides) > +AC_SUBST(cross_overrides) > +AC_SUBST(build_overrides) > > Note the use of the word 'hacked'. The problem seems to be due to > differences between gGNU sed and BSD sed. > > -- Michael > > substitution > > On Sun, 9 Feb 2003, Bernhard Held wrote: > >>> Well I'm trying to solve some problems that appear to happen when >>> compiling sdcc using Mac OSX version (10).2. The compile farm at sf >>> still uses 10.1 and the new system appears to have broken something. >>> >>> So far I've concluded that when doing ./configure the Makefile in >>> /sdcc/support/cpp2/ is empty. Using 10.1 at the cf this appears not >>> to >>> be the case. >>> >>> So what I would like to know what is the difference between >>> /support/cpp and /support/cpp2? Does it have a special task? >> In support/cpp was version 2.95.x. Then we migrated to cpp 3.1, and a >> new >> directory in parallel to the old one was needed: support/cpp2 was >> created. >> After the migration the old cpp was deleted in CVS. >> >> Bernhard >> >> >> ------------------------------------------------------- >> This SF.NET email is sponsored by: >> SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See! >> http://www.vasoftware.com >> _______________________________________________ >> sdcc-devel mailing list >> sdc...@li... >> https://lists.sourceforge.net/lists/listinfo/sdcc-devel >> > > > > > ------------------------------------------------------- > This SF.NET email is sponsored by: > SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See! > http://www.vasoftware.com > _______________________________________________ > sdcc-devel mailing list > sdc...@li... > https://lists.sourceforge.net/lists/listinfo/sdcc-devel > |