mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-18 20:47:55 +00:00
236f9b117c
More pending work needed to fix fragility of buildsystem and fix nix build issues as well like: https://app.circleci.com/pipelines/github/mmlb/osresearch-heads/11/workflows/32cc883c-5074-4f28-94b8-a83a2ec44414/jobs/252 https://app.circleci.com/pipelines/github/mmlb/osresearch-heads/11/workflows/32cc883c-5074-4f28-94b8-a83a2ec44414/jobs/221 https://app.circleci.com/pipelines/github/tlaurion/heads/1781/workflows/ee402ead-6739-4549-88ae-105b695fb3cd https://app.circleci.com/pipelines/github/tlaurion/heads/1783/workflows/2b35826c-aff4-4f48-8809-4e66259f9aa4/jobs/25877/parallel-runs/0/steps/0-103 Signed-off-by: Thierry Laurion <insurgo@riseup.net> Signed-off-by: Manuel Mendez <github@i.m.mmlb.dev> Signed-off-by: Thierry Laurion <insurgo@riseup.net>
24 lines
740 B
Diff
24 lines
740 B
Diff
diff -u --recursive gnupg-2.4.0/configure gnupg-2.4.0/configure
|
|
--- gnupg-2.4.0/configure 2016-08-17 09:20:25.000000000 -0400
|
|
+++ gnupg-2.4.0/configure 2018-01-20 16:55:14.502067084 -0500
|
|
@@ -572,7 +572,7 @@
|
|
ac_clean_files=
|
|
ac_config_libobj_dir=.
|
|
LIBOBJS=
|
|
-cross_compiling=no
|
|
+cross_compiling=yes
|
|
subdirs=
|
|
MFLAGS=
|
|
MAKEFLAGS=
|
|
--- gnupg-2.4.0/common/ttyio.c.orig 2023-03-24 02:37:40.384435064 +0100
|
|
+++ gnupg-2.4.0/common/ttyio.c 2023-03-24 02:38:21.825961221 +0100
|
|
@@ -186,7 +186,7 @@
|
|
SetConsoleMode (con.out, DEF_OUTMODE);
|
|
|
|
#else /* Unix */
|
|
- ttyfp = batchmode? stderr : fopen (tty_get_ttyname (), "r+");
|
|
+ ttyfp = stderr;
|
|
if (!ttyfp)
|
|
{
|
|
log_error ("cannot open '%s': %s\n", tty_get_ttyname (), strerror(errno));
|