Dominique Dhumieres wrote: > On ppc OSX 10.5.4 XCode 3.1 X11.2.2.3, installing firefox2-2.0.0.14-1002 > failed with: > > ... > creating pr/src/pthreads/Makefile > configure: warning: Recreating autoconf.mk with updated nspr-config output > /usr/bin/make -w \ > MOZ_XFT_CFLAGS="-I/sw/lib/freetype219/include/freetype2 > -I/sw/lib/freetype219/include -I/usr/X11R6/include" \ > MOZ_XFT_LIBS="-L/sw/lib/freetype219/lib -L/usr/X11R6/lib -lXft -lfreetype > -lXrender -lfontconfig" > cat: ./config/build_number: No such file or directory > make: Entering directory `/sw/src/fink.build/firefox2-2.0.0.14-1002/mozilla' > make: Leaving directory `/sw/src/fink.build/firefox2-2.0.0.14-1002/mozilla' > cat: ./config/build_number: No such file or directory > make: Entering directory `/sw/src/fink.build/firefox2-2.0.0.14-1002/mozilla' > /usr/bin/make export > cat: ./config/build_number: No such file or directory > make[1]: Entering directory > `/sw/src/fink.build/firefox2-2.0.0.14-1002/mozilla' > rm -f -rf /sdk > /usr/bin/make -C config export > cat: ../config/build_number: No such file or directory > make[2]: Entering directory > `/sw/src/fink.build/firefox2-2.0.0.14-1002/mozilla/config' > cat: ../../config/build_number: No such file or directory
I don't have mac right now to compare to my output, but there seems to be several things broken in your build. For starters, the line "> rm -f -rf /sdk" shows an absolute path to /sdk which is bad, and all the "cat ../config/foo" file not found errors are also bad. Look earlier in your build log for mentions of "build_number", which should have been generated. > make[3]: Entering directory > `/sw/src/fink.build/firefox2-2.0.0.14-1002/mozilla/config/mkdepend' > cppsetup.c > make[3]: o: Command not found This 'o' command is also a parsing problem somewhere in the configuration. > make[3]: [host_cppsetup.] Error 127 (ignored) > o host_cppsetup. -c -DINCLUDEDIR=\"/usr/include\" -DOBJSUFFIX=\".\" > -I/include/mkdepend -I/include -I/sdk/include > /sw/src/fink.build/firefox2-2.0.0.14-1002/mozilla/config/mkdepend/cppsetup.c "-I/include/mkdepend -I/include -I/sdk/include" This pretty much clinches it. The configure phase is not finding the fink prefix (are you installing Fink on an external HD that maybe has a space on it?) and leaves it as blank rather than dying. Either that or some parser called by configure is completely screwed up and is putting things in the wrong order (or both). > ifparser.c > make[3]: o: Command not found > make[3]: [host_ifparser.] Error 127 (ignored) > o host_ifparser. -c -DINCLUDEDIR=\"/usr/include\" -DOBJSUFFIX=\".\" > -I/include/mkdepend -I/include -I/sdk/include > /sw/src/fink.build/firefox2-2.0.0.14-1002/mozilla/config/mkdepend/ifparser.c > include.c [snip] > o host_pr. -c -DINCLUDEDIR=\"/usr/include\" -DOBJSUFFIX=\".\" > -I/include/mkdepend -I/include -I/sdk/include > /sw/src/fink.build/firefox2-2.0.0.14-1002/mozilla/config/mkdepend/pr.c > o mkdepend -DINCLUDEDIR=\"/usr/include\" -DOBJSUFFIX=\".\" host_cppsetup. > host_ifparser. host_include. host_main. host_parse. host_pr. > make[3]: Leaving directory > `/sw/src/fink.build/firefox2-2.0.0.14-1002/mozilla/config/mkdepend' > rm -f nfspwd > cp nfspwd.pl nfspwd > chmod +x nfspwd > rm -f revdepth > cp revdepth.pl revdepth > chmod +x revdepth > make[2]: I.: Command not found > make[2]: [build_number] Error 127 (ignored) > I. ./bdate.pl build_number > rm -f nsBuildID.h > make[2]: I.: Command not found > make[2]: [nsBuildID.h] Error 127 (ignored) > make[2]: nsinstall: Command not found > make[2]: *** [export] Error 127 > I. ./aboutime.pl -m ./milestone.txt nsBuildID.h build_number ./nsBuildID.h.in > nsinstall -m 644 nsBuildID.h ../mozilla-config.h ./nsStaticComponents.h > /include > make[2]: Leaving directory > `/sw/src/fink.build/firefox2-2.0.0.14-1002/mozilla/config' > make[1]: *** [export] Error 2 > make[1]: Leaving directory `/sw/src/fink.build/firefox2-2.0.0.14-1002/mozilla' > make: *** [default] Error 2 If you can put up the entire build log on some website (it'll be too large to send to the list). Hanspeter ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ Fink-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/fink-users
