live-bootstrap/sysa/kbd-1.15/patches/resizecons.patch
fosslinux b760b3eb2b Final fixes:
- All QEMU reproducibility issues resolved
- Added SPDX licensing
- Couple other small issues
- Fix guile reproducbility
2022-03-12 16:24:25 +11:00

34 lines
1,005 B
Diff

SPDX-FileCopyrightText: 2022 fosslinux <fosslinux@aussies.space>
SPDX-License-Identifier: GPL-2.0-or-later
Don't build resizecons (will not build in chroot).
--- src/Makefile.am 2022-02-26 14:11:22.577168053 +1100
+++ src/Makefile.am 2022-02-26 14:11:34.641835790 +1100
@@ -10,10 +10,6 @@
PROGS += getkeycodes setkeycodes
endif
-if RESIZECONS_PROGS
-PROGS += resizecons
-endif
-
if OPTIONAL_PROGS
PROGS += \
screendump setlogcons setvesablank spawn_console spawn_login \
--- configure.ac 2022-02-26 14:10:50.047367229 +1100
+++ configure.ac 2022-02-26 14:11:15.310765839 +1100
@@ -53,12 +53,6 @@
esac
AM_CONDITIONAL(KEYCODES_PROGS, test "$KEYCODES_PROGS" = "yes")
-case $host_cpu in
- i?86*) RESIZECONS_PROGS=yes ;;
- *) RESIZECONS_PROGS=no ;;
-esac
-AM_CONDITIONAL(RESIZECONS_PROGS, test "$RESIZECONS_PROGS" = "yes")
-
AC_ARG_ENABLE(optional-progs,
AS_HELP_STRING(--enable-optional-progs, [Build and install a optional programs]),
[OPTIONAL_PROGS=$enableval],[OPTIONAL_PROGS=no])