diff options
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 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 "; |