From 328987b627c44db7b16598da18d261d61e13a572 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Wed, 8 Jan 2020 22:08:55 +0000 Subject: [PATCH] Reduce verbosity of source-dependencies. Doesn't work well with parallel builds. --- Goalfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Goalfile b/Goalfile index 16e63e1..98a56d0 100644 --- a/Goalfile +++ b/Goalfile @@ -139,7 +139,7 @@ goal rebuild (pkg) = pure function source-dependencies (pkg) = @{ specfile=%fedora-dir/%pkg/%branch/%pkg.spec - echo -n Dependencies of %pkg: >&2 + echo Calculating dependencies of %pkg >&2 echo '[' for r in $(rpmspec -q --buildrequires $specfile 2>/dev/null | @@ -153,10 +153,8 @@ pure function source-dependencies (pkg) = @{ grep -sq "^$r\$" then echo "*built-in-koji(\"$p\")," - echo -n '' $p >&2 fi done done echo ']' - echo >&2 } -- 1.8.3.1