Skip to content
Snippets Groups Projects
Commit edf08652 authored by Petr Rockai's avatar Petr Rockai
Browse files

test: Process dependencies of .pkg.c files more carefully.

parent f9015e7c
No related branches found
No related tags found
No related merge requests found
......@@ -17,10 +17,12 @@ $cflags .= " $2" if ( $file =~ m,^(/\*|//) CC_OPTS: (.*?)(\*/)?$,sm );
$cflags =~ s,\$SRC_ROOT,$ENV{SRCDIR},g;
my $extras = `cd $dir && $cc -MM -MT "" $basename $cflags`;
$extras =~ s,\\\n,,g;
$extras =~ s,^: [^ ]*,,; # chop off the file itself
for my $name ( split /\s+/, $extras )
{
next unless $name;
next if ( $name =~ m,^/, );
my $subdir = $name;
$subdir =~ s,(^|/)[^/]*$,,;
system( "mkdir -p $subdir" ) if $subdir;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment