At Tuesday 20 April 2010, Ralf Wildenhues <[email protected]> wrote:
> > >   include .//file
> >
> > This one is sufficient o trigger the bug.
> 
> What about when you use quoting around the file name?
 
Same error with double quotes:
  $ : > foo.mk
  $ cat > double.mk
  a:;
  include ".//foo.mk"
  EOF
  $ heirloom-make -f double.mk
  heirloom-make: fatal error: line 2: cannot get /foo.mk for including
  .

Single quotes seems not to be recognized as filename-quoting:
  $ : > foo.mk
  $ cat > single.mk
  a:;
  include 'foo.mk'
  EOF
  $ heirloom-make -f single.mk
  heirloom-make: fatal error: line 2: cannot get 'foo.mk' for including
  .

Sorry I didn't answer before, but your message had fallen of my radar
somehow.

Regards,
    Stefano


Reply via email to