summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorPeter Foley <pefoley2@verizon.net>2013-03-25 21:18:49 -0400
committerPeter Foley <pefoley2@verizon.net>2013-03-26 11:39:36 -0400
commit406dfa3240249d3611743ec2cee1b644a3c56291 (patch)
tree50c15f69e59ea0a417b8652b6aef244f5e383b0b /bin
parent3759f02465b8c15a99f2a4662b57f214125b2922 (diff)
speed-up module-deps.pl
Change-Id: Idf703b1b5e26e32a0e8276c6f2eba51cd80f1b0b
Diffstat (limited to 'bin')
-rwxr-xr-xbin/module-deps.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/module-deps.pl b/bin/module-deps.pl
index 4ed9ca8fcda6..a46634a24061 100755
--- a/bin/module-deps.pl
+++ b/bin/module-deps.pl
@@ -32,7 +32,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 -n -f $makefile_build all|") || die "can't launch make: $!";
+ open ($p, "ENABLE_PRINT_DEPS=1 $gnumake -q -f $makefile_build all|") || die "can't launch make: $!";
}
$|=1;
print STDERR "reading deps ";