Parrot no longer builds on VMS.  Here's the basic problem.

Given:

[]wibble.c

    #include "foo/foo.h"

    int main (void) {
        printf("Loaded\n");
        exit(0);
    }

[.include.foo]foo.h

    #include <stdio.h>
    #include <stdlib.h>


$ cc/decc /include=[.include] wibble.c

#include "foo/foo.h"
..^
%CC-F-NOINCLFILEF, Cannot find file "foo/foo.h" specified in #include directive.
at line number 1 in file USER1:[SCHWERN.TMP]WIBBLE.C;7
$ cc/decc /include="./include" wibble.c
$ 


Why can't the first command find [.include.foo]foo.h but the second
can?


-- 

Michael G. Schwern   <[EMAIL PROTECTED]>    http://www.pobox.com/~schwern/
Perl Quality Assurance      <[EMAIL PROTECTED]>         Kwalitee Is Job One
Cherry blossoms fall
I hurry to my final
boiling paste enema.
        -- mjd

Reply via email to