Control: tags -1 patch Proposed patch attached.
Mark
>From c8f46b305a96bf77ad63b6719032856e50953ddb Mon Sep 17 00:00:00 2001 From: Mark Hindley <m...@hindley.org.uk> Date: Wed, 6 Nov 2024 16:19:43 +0000 Subject: [PATCH] ucf: don't print empty lines on stderr. Closes: #816220 --- ucf | 3 --- 1 file changed, 3 deletions(-) diff --git a/ucf b/ucf index 3e218bf..4c896d8 100755 --- a/ucf +++ b/ucf @@ -861,7 +861,6 @@ else # "$dest_file" does not exist if [ "X$lastsum" = "X" ]; then # Ok, so there is no indication that the package was ever # installed on this machine. - echo >&2 "" echo >&2 "Creating config file $dest_file with new version" replace_conf_file; exit 0; @@ -870,7 +869,6 @@ else # "$dest_file" does not exist # we saw. Since the user apparently has deleted the file, # nothing needs be done, unless we have been told differently if [ "X$force_conffmiss" != "X" ]; then - echo >&2 "" echo >&2 "Recreating deleted config file $dest_file with new version, as asked" replace_conf_file; exit 0; @@ -883,7 +881,6 @@ else # "$dest_file" does not exist if [ "X$force_conffmiss" != "X" ]; then # User has said to replace missing files, so we do so, no # questions asked. - echo >&2 "" echo >&2 "Recreating deleted config file $dest_file with new version, as asked" replace_conf_file; exit 0; -- 2.39.5