On Fri, Sep 02, 2005 at 06:19:58PM +0000, Ali Hamza wrote:

> DEFAULT_POSIX2_VERSION=199209 ./configure --prefix =/usr
> command i received the following error message
> 
> configure: error: expected an absolute directory name for --prefix: =/usr
> 
> i dont know why is it so....

Try removing the spurious space in your command, giving:
        ./configure --prefix=/usr
or use the space without "=":
        ./configure --prefix /usr

Either of these should solve your problem.  The way you have it, "="
is being interpreted as the first character of the path name (don't
forget that "=" is legal as a directory name).

James.


_______________________________________________
Bug-coreutils mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/bug-coreutils

Reply via email to