help-make
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: inconsistency of 'emptiness'?


From: Der Herr Hofrat
Subject: Re: inconsistency of 'emptiness'?
Date: Tue, 28 Jan 2003 14:10:59 +0100 (CET)

> If forgot to add the following result, when FOO is set in the environment 
> it works as you would hope:
> 
> address@hidden junk]$ export FOO=' '; make
> 
> FOO: origin=environment
> 
> This seems to indicate that the command line behavior is an anomaly/bug.

thats a shell problem not make - do

export FOO=\  ; make 
            ^- there is a blank behind the backslash...  
 or

export FOO=" " ; make

then make will see the " " and pass it on - 

hofrat




reply via email to

[Prev in Thread] Current Thread [Next in Thread]