> That "'" is certainly a bug. I installed this patch, not that it will > fix your problem. > > 2007-11-09 Paul Eggert <[EMAIL PROTECTED]> > > * GNUmakefile (PATH): Remove stray apostrophes; they become > part of PATH, which isn't wanted here. > > diff --git a/GNUmakefile b/GNUmakefile > index 79ad492..652d015 100644 > --- a/GNUmakefile > +++ b/GNUmakefile > @@ -39,7 +39,7 @@ ifeq ($(have-Makefile),yes) > export TAR_OPTIONS = --owner=0 --group=0 --numeric-owner > > # Build with our own versions of these tools, when possible. > -export PATH = '$(shell echo "`pwd`/tests:$$PATH")' > +export PATH = $(shell echo "`pwd`/tests:$$PATH") > > include Makefile > >
After trying your patch it work :) Thanks again Best regards, Alex _______________________________________________________________________ Jetzt neu! Schützen Sie Ihren PC mit McAfee und WEB.DE. 3 Monate kostenlos testen. http://www.pc-sicherheit.web.de/startseite/?mc=022220
