diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-01-09 01:00:00 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-01-09 01:00:00 +0100 |
commit | 360379200dd15ddaa63141fb46908dd9f7e2ed17 (patch) | |
tree | 748d30f6565daead43760d8c3aad04ab963539e2 /gnu/packages | |
parent | 43990c6a292b5958c2002a189fbf3b2ee782ba09 (diff) | |
download | guix-360379200dd15ddaa63141fb46908dd9f7e2ed17.tar.gz |
Revert "gnu: tree: Fix problem with no output when fd3 is present."
This reverts commit bd4f314bbacaaa56751be3a4769f2082be747d24.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/admin.scm | 1 | ||||
-rw-r--r-- | gnu/packages/patches/tree-disable-stddata.patch | 16 |
2 files changed, 0 insertions, 17 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index 8a7d1b0615..c2e656db1a 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -2401,7 +2401,6 @@ recover lost partitions and/or make non-booting disks bootable again.") (uri (string-append "http://mama.indstate.edu/users/ice/tree/src/tree-" version ".tgz")) - (patches (search-patches "tree-disable-stddata.patch")) (sha256 (base32 "0f92vx6gpz7v29wi9clklzah57v7lgx5kv0m1w4b9xjc35d9qcz3")))) (build-system gnu-build-system) diff --git a/gnu/packages/patches/tree-disable-stddata.patch b/gnu/packages/patches/tree-disable-stddata.patch deleted file mode 100644 index 52ca6e25f4..0000000000 --- a/gnu/packages/patches/tree-disable-stddata.patch +++ /dev/null @@ -1,16 +0,0 @@ -Tree 2.0.0 and later will write its output in JSON format on fd3 if -present, instead of the requested output on fd1, which breaks e.g. -'password-store' tests. Disable for now; upstream has been notified. - -diff --git a/tree.c b/tree.c ---- a/tree.c -+++ b/tree.c -@@ -133,7 +133,7 @@ int main(int argc, char **argv) - mb_cur_max = 1; - #endif - --#ifdef __linux__ -+#if 0 - // Output JSON automatically to "stddata" if present: - if (fcntl(STDDATA_FILENO, F_GETFD) >= 0) { - Jflag = noindent = TRUE; |