From: wstewart@aa.net (Wayne Stewart)
Subject: make 'export' bug (in b19 still?)
12 Sep 1997 15:54:32 -0700
Message-ID: <199709122215.PAA14770.cygnus.gnu-win32@big.aa.net>
Mime-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
To: <gnu-win32@cygnus.com>


Hi,

I'm curious as to whether the following make bug will still exist in b19
(or if there is an existing patch that fixes it in b18)?

Thanks,
    Wayne Stewart
    wstewart@aa.net


CYGWIN32(b18) behavior:

    bash$ export FOOBAR="set by bash"
    bash$ cat Makefile
    
    export FOOBAR="set by make"
    
    echoit:
            @env | egrep FOOBAR
    bash$ make
    FOOBAR=set by bash
    bash$
    
LINUX behavior:

    bash$ export FOOBAR="set by bash"
    bash$ cat Makefile
    
    export FOOBAR="set by make"
    
    echoit:
            @env | egrep FOOBAR
    bash$ make
    FOOBAR="set by make"
    bash$

-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".
