From 406dfa3240249d3611743ec2cee1b644a3c56291 Mon Sep 17 00:00:00 2001 From: Peter Foley Date: Mon, 25 Mar 2013 21:18:49 -0400 Subject: speed-up module-deps.pl Change-Id: Idf703b1b5e26e32a0e8276c6f2eba51cd80f1b0b --- bin/module-deps.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin/module-deps.pl') 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 "; -- cgit