# --- T2-COPYRIGHT-BEGIN --- # t2/package/*/squashfs-tools/hotfix-no-pager.patch # Copyright (C) 2025 The T2 SDE Project # SPDX-License-Identifier: GPL-2.0 or patched project license # --- T2-COPYRIGHT-END --- PAGER cannot have spaces or tabs! If you want to do this, please use a wrapper script! Just no. --- squashfs-tools-4.7.5/squashfs-tools/print_pager.c.vanilla 2026-03-02 16:21:07.215538434 +0100 +++ squashfs-tools-4.7.5/squashfs-tools/print_pager.c 2026-03-02 16:21:33.800320617 +0100 @@ -201,6 +201,7 @@ int check_and_set_pager(char *pager) { + return TRUE; int args = 0, result, i; char *base, *cur = pager; @@ -239,6 +239,8 @@ FILE *exec_pager(pid_t *process) { + return stdout; + FILE *file; int res, pipefd[2]; pid_t child;