diff options
author | Peter Foley <pefoley2@verizon.net> | 2013-04-14 10:24:46 -0400 |
---|---|---|
committer | Peter Foley <pefoley2@verizon.net> | 2013-04-14 10:24:46 -0400 |
commit | cd809a1e4397af66f2e418532c368a7ec7a8c1b1 (patch) | |
tree | f7c08bb9b5eee9fa6830ded888f35b2345eb9003 /bin | |
parent | 1c0e3ea7a0f02251b6a1876ba2eec7ed5cd83246 (diff) |
fix weird Circular Dep messages
Change-Id: Ib8e442740a421d3ed86202813e97aa0239fb2299
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/module-deps.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/module-deps.pl b/bin/module-deps.pl index 2742600ef13a..acf072aaf263 100755 --- a/bin/module-deps.pl +++ b/bin/module-deps.pl @@ -33,7 +33,7 @@ sub read_deps() if (defined $from_file) { open ($p, $from_file) || die "can't read deps from cache file: $!"; } else { - open ($p, "ENABLE_PRINT_DEPS=1 $gnumake -q -f $makefile_build all|") || die "can't launch make: $!"; + open ($p, "ENABLE_PRINT_DEPS=1 $gnumake -qrf $makefile_build|") || die "can't launch make: $!"; } $|=1; print STDERR "reading deps "; |