in reply to Include directories not included

Pointing out the obvious, maybe: have you tried Inline?

Replies are listed 'Best First'.
Re^2: Include directories not included
by jwetherill (Initiate) on Jul 06, 2005 at 10:24 UTC
    Yes that is what I am working on, trying to inline some c code.
    So far the best I have come up with is

    INC => '-I"path"'

    Of course this work but for one path only. Can not seem to get a second one included.

      You got your parameter quoting wrong. Usually you need to quote your parameters like this:

      "-I$path"

      because the shell does not know about the "inner" parameters. You can also try to give more than one -I switch instead.

        Unfortunately I have tried to do more than one and the second -I seems to not work. INC => ("-I$path", "-I$path")
        This fails as I get an invalid usage. by doing it most other ways INC => ("-I'$path, $path'")
        This seems to do nothing.