Imagine a makefile that looks like this :
(this make file does nothing appart from print 'foo' out :) )
------
bar: $${ACE_PATH}

ACE_PATH=$(L)/zulu

$(ACE_PATH):
        echo "foo"
------

Under Solaris Make this code runs aok...

Under Gnu Make it cannot fine '$(ACE_PATH)...

This appears to be a similar problem to :
http://mail.gnu.org/pipemail/bug-make/1998-December/001471.html

Is this a fixed feature of gnumake? or can I rewrite the above make file
to cope with that structure?

        Sean Bennett

_______________________________________________
Bug-make mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-make

Reply via email to