From a0aa4fa49bbf83c99fc1212eb2faf5ddafc71968 Mon Sep 17 00:00:00 2001 From: Michael Gilbert Date: Wed, 12 Oct 2022 01:18:28 +0100 Subject: [PATCH] disable manual line wrapping in makefiles Gbp-Pq: Topic disable Gbp-Pq: Name line-wrapping.patch --- tools/makedep.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/makedep.c b/tools/makedep.c index f3649a4..24a94c4 100644 --- a/tools/makedep.c +++ b/tools/makedep.c @@ -408,7 +408,7 @@ static const char *normalize_arch( const char *arch ) */ static void output_filename( const char *name ) { - if (output_column + strlen(name) + 1 > 100) + if (0) { output( " \\\n" ); output( " " ); -- 2.30.2