From 115db0b3dc4834773e1e4be102dab8bc828a6b3b Mon Sep 17 00:00:00 2001 From: Michael Gilbert Date: Tue, 13 Sep 2022 01:46:21 +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