From 5ec2993fd35d9c9e2ffcc801cb53536e29dcea32 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Sun, 16 Feb 2025 13:28:18 +0000 Subject: [PATCH] PTY: Increase maximum line length to 16k Some compiler command lines massively exceed the 4k, so let's try with something much larger. Signed-off-by: Michael Tremer --- src/pakfire/pty.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pakfire/pty.c b/src/pakfire/pty.c index b056d606..c5707b38 100644 --- a/src/pakfire/pty.c +++ b/src/pakfire/pty.c @@ -36,7 +36,7 @@ #include #include -#define MAX_LINE_LENGTH 4096 +#define MAX_LINE_LENGTH 16384 struct pakfire_pty_stdio { // File Descriptor -- 2.39.5