K 10 svn:author V 6 obrien K 8 svn:date V 27 2002-05-10T08:41:46.000000Z K 7 svn:log V 835 Use MD_EXEC_PREFIX now to get us thru `buildworld'. The problem is the GCC driver now turns STANDARD_EXEC_PREFIX into a relative path -- "/../../libexec" for our normal install location. However, in the middle of `buildworld' we need "/../../../../libexec" due to the prefix we tell the GCC driver. But either the GCC driver is buggy, or we are confusing it, as it tries to exec "/../../libexec/cpp0" as if it were installed in the normal place (but isn't). MD_EXEC_PREFIX is still absolute, so I'll use that for now. I would like to later make it so MD_EXEC_PREFIX is set only for `buildworld', as MD_EXEC_PREFIX is also in the search path for libraries. Don't ask me why! Another way is to add ${OBJFORMAT_PATH} (as set in CROSSENV) to the PATH in src/Makefile.inc's WMAKEENV. END