unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#43081: diffutils always referrers to the native coreutils
@ 2020-08-28  7:36 Mathieu Othacehe
  2020-08-28 14:27 ` Ludovic Courtès
  0 siblings, 1 reply; 5+ messages in thread
From: Mathieu Othacehe @ 2020-08-28  7:36 UTC (permalink / raw)
  To: 43081

[-- Attachment #1: Type: text/plain, Size: 2430 bytes --]


Hello,

The "diff" executable from diffutils stores a reference to the native,
canonical "pr" from coreutils. This is bad for two reasons:

* It makes the Guix System closure bigger by dragging the canonical
  coreutils.

* The cross-compiled diffutils drags the native coreutils to its
  closure, see:

--8<---------------cut here---------------start------------->8---
mathieu@cervin:~$ guix size /gnu/store/5bj91pfnm3z6qbpbl0hp07w12arzk93k-diffutils-3.7
store item                                                       total    self
/gnu/store/j48jp74s1j2mrh7nckg9asdyjv1hvi21-glibc-cross-aarch64-linux-gnu-2.31   158.9    71.4  34.8%
/gnu/store/fa6wj5bxkj5ll1d7292a70knmyl7a0cr-glibc-2.31              38.4 36.7  17.9%
/gnu/store/01b4w3m6mp55y531kyi1g8shh722kwqm-gcc-7.5.0-lib           71.0    32.6  15.9%
/gnu/store/xw23yv6fv0cb6n0sbc552l1mkc15yq3n-gcc-cross-aarch64-linux-gnu-7.5.0-lib   186.8    27.9  13.6%
/gnu/store/57xj5gcy1jbl9ai2lnrqnpr0dald9i65-coreutils-8.32          88.0    17.0   8.3%
/gnu/store/sl883skd8gbzcj4fl44w7dv1a5yaa3k4-gcc-cross-sans-libc-aarch64-linux-gnu-7.5.0-lib    80.8     9.8   4.8%
/gnu/store/66m8j38495zdcy2iv55m5d1hj3pxayff-linux-libre-headers-cross-aarch64-linux-gnu-5.4.20     5.1     5.1   2.5%
/gnu/store/bcjcd97xvh0qkvq1maqj6qab88xb30dv-bash-static-5.0.16       1.6     1.6   0.8%
/gnu/store/mmhimfwmmidf09jw1plw3aw1g1zn2nkh-bash-static-5.0.16       1.6     1.6   0.8%
--8<---------------cut here---------------end--------------->8---

The native version of glibc, gcc-lib, coreutils and bash-static are part
of the closure of the cross-compiled coreutils.

I hoped to fix it with the naive patch attached, but it fails for
obscure reasons while building acl:

--8<---------------cut here---------------start------------->8---
FAIL: test/malformed-restore
============================

[4] $ cp "/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/test/malformed-restore-double-owner.acl" tmp.acl -- ok
[5] $ sed -i "s/USER/30001/g" tmp.acl -- failed
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
[6] $ sed -i "s/GROUP/30000/g" tmp.acl -- failed
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
--8<---------------cut here---------------end--------------->8---

Any idea, what's going on?

Thanks,

Mathieu

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-diffutils-Do-not-refer-to-canonical-coreutils.patch --]
[-- Type: text/x-diff, Size: 1133 bytes --]

From 59ff84c360e25ac754cc17f285d9bbf077a5e6c3 Mon Sep 17 00:00:00 2001
From: Mathieu Othacehe <othacehe@gnu.org>
Date: Fri, 28 Aug 2020 09:32:17 +0200
Subject: [PATCH] gnu: diffutils: Do not refer to canonical coreutils.

* gnu/packages/base.scm (diffutils)[inputs]: Add "coreutils",
[arguments]: and use it by passing PR_PROGRAM.
---
 gnu/packages/base.scm | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm
index f22e4ab9cc..99f8aefb67 100644
--- a/gnu/packages/base.scm
+++ b/gnu/packages/base.scm
@@ -269,7 +269,13 @@ differences.")
              (base32
               "09isrg0isjinv8c535nxsi1s86wfdfzml80dbw41dj9x3hiad9xk"))))
    (build-system gnu-build-system)
+   (arguments
+    '(#:configure-flags
+      (list (string-append "PR_PROGRAM="
+                           (assoc-ref %build-inputs "coreutils*")
+                           "/bin/pr"))))
    (native-inputs `(("perl" ,perl)))
+   (inputs `(("coreutils*" ,coreutils)))
    (synopsis "Comparing and merging files")
    (description
     "GNU Diffutils is a package containing tools for finding the
-- 
2.24.0


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* bug#43081: diffutils always referrers to the native coreutils
  2020-08-28  7:36 bug#43081: diffutils always referrers to the native coreutils Mathieu Othacehe
@ 2020-08-28 14:27 ` Ludovic Courtès
  2020-08-28 14:51   ` Mathieu Othacehe
  0 siblings, 1 reply; 5+ messages in thread
From: Ludovic Courtès @ 2020-08-28 14:27 UTC (permalink / raw)
  To: Mathieu Othacehe; +Cc: 43081

Hi!

Mathieu Othacehe <othacehe@gnu.org> skribis:

> The "diff" executable from diffutils stores a reference to the native,
> canonical "pr" from coreutils. This is bad for two reasons:
>
> * It makes the Guix System closure bigger by dragging the canonical
>   coreutils.
>
> * The cross-compiled diffutils drags the native coreutils to its
>   closure, see:

[...]

> I hoped to fix it with the naive patch attached, but it fails for
> obscure reasons while building acl:
>
> FAIL: test/malformed-restore
> ============================
>
> [4] $ cp "/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/test/malformed-restore-double-owner.acl" tmp.acl -- ok
> [5] $ sed -i "s/USER/30001/g" tmp.acl -- failed
> ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
> [6] $ sed -i "s/GROUP/30000/g" tmp.acl -- failed
> ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~

Could it be that there are two different libcs involved?

Do you know which acl is fixing (commencement.scm vs. acl.scm)?

Thanks,
Ludo’.




^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#43081: diffutils always referrers to the native coreutils
  2020-08-28 14:27 ` Ludovic Courtès
@ 2020-08-28 14:51   ` Mathieu Othacehe
  2020-08-31 12:00     ` Ludovic Courtès
  0 siblings, 1 reply; 5+ messages in thread
From: Mathieu Othacehe @ 2020-08-28 14:51 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 43081

[-- Attachment #1: Type: text/plain, Size: 392 bytes --]


Hey Ludo!

> Could it be that there are two different libcs involved?

I can only spot one in environment-variables file.

> Do you know which acl is fixing (commencement.scm vs. acl.scm)?

Yes it's the acl that is rooted in the bootstrap toolchain. Here's the
full build log attached. I'm also cc-ing janneke which has some
experience in that matter :).

Thanks for having a look,

Mathieu

[-- Attachment #2: log --]
[-- Type: application/octet-stream, Size: 68782 bytes --]

;;; note: source file /home/mathieu/guix-core-updates/gnu/packages/base.scm
;;;       newer than compiled /home/mathieu/guix-core-updates/gnu/packages/base.go
;;; note: source file /home/mathieu/guix-core-updates/gnu/packages/base.scm
;;;       newer than compiled /home/mathieu/.guix-profile/lib/guile/2.2/site-ccache/gnu/packages/base.go
;;; note: source file /home/mathieu/guix-core-updates/gnu/packages/base.scm
;;;       newer than compiled /run/current-system/profile/lib/guile/3.0/site-ccache/gnu/packages/base.go
;;; note: source file /home/mathieu/guix-core-updates/gnu/packages/admin.scm
;;;       newer than compiled /home/mathieu/guix-core-updates/gnu/packages/admin.go
;;; note: source file /home/mathieu/guix-core-updates/gnu/packages/admin.scm
;;;       newer than compiled /home/mathieu/.guix-profile/lib/guile/2.2/site-ccache/gnu/packages/admin.go
;;; note: source file /home/mathieu/guix-core-updates/gnu/packages/admin.scm
;;;       newer than compiled /run/current-system/profile/lib/guile/3.0/site-ccache/gnu/packages/admin.go
;;; note: source file /home/mathieu/guix-core-updates/gnu/packages/man.scm
;;;       newer than compiled /home/mathieu/guix-core-updates/gnu/packages/man.go
;;; note: source file /home/mathieu/guix-core-updates/gnu/packages/man.scm
;;;       newer than compiled /home/mathieu/.guix-profile/lib/guile/2.2/site-ccache/gnu/packages/man.go
;;; note: source file /home/mathieu/guix-core-updates/gnu/packages/man.scm
;;;       newer than compiled /run/current-system/profile/lib/guile/3.0/site-ccache/gnu/packages/man.go
The following derivations will be built:
   /gnu/store/vzccfsf5pvnv513lv6pc1ca0hwlh8i3b-diffutils-3.7.drv
   /gnu/store/5yw5rb209l5ghkg2lxadv2lb10jk45xp-diffutils-3.7.drv
   /gnu/store/f9h4awcml68fahfkx82qi6nspqln1ivp-coreutils-8.32.drv
   /gnu/store/vychgc52186l842h3c9q0rxp1kfhfs0a-acl-2.2.53.drv
   /gnu/store/bi9cgcasx4snw0641b0y7d74gc3rnf29-perl-5.30.2.drv
   /gnu/store/szpc0dpjvgpj5cnbs40ynd237cgrp04h-coreutils-8.32.drv
   /gnu/store/2clkhib5cpx20gdv9s4dfsan2rx5r0jj-acl-2.2.53.drv
   /gnu/store/9y4sh78csb7k9i26f66gvxg67qqvfp0j-attr-2.4.48.drv
   /gnu/store/v00bcldk0wx0vxn5iydgxrfw5nvzhb8n-gettext-minimal-0.21.drv
   /gnu/store/693dsm2gxsscqn0dh6jghdd5qs6sxqy6-libunistring-0.9.10.drv
   /gnu/store/b3yp9j9gvxyyid02nwh1ydcaq8cld9h4-zlib-1.2.11.drv
   /gnu/store/p971rs9s1ywcn5z596wnzlx7gk3h84zy-ncurses-6.2.drv
   /gnu/store/rf01d2bmd41m24cf952w3ans44w47bw7-pkg-config-0.29.2.drv
   /gnu/store/zvxvlqpl7a8zx6h3qwjhgklhjbaspzx9-libxml2-2.9.10.drv
   /gnu/store/8d3m5lbpq65rn4mcrba6zhh0pv1237b8-xz-5.2.5.drv
   /gnu/store/ky002lkm9qw56wvrgpwjr68ix8z50m26-libcap-2.31.drv
   /gnu/store/w1nn3div9ih8ndipm2b0h9bx3ghmzi0w-gmp-6.2.0.drv
   /gnu/store/9d881jlb9czcqxsvpbrypw6d6s9lgyc5-m4-1.4.18.drv
building /gnu/store/vychgc52186l842h3c9q0rxp1kfhfs0a-acl-2.2.53.drv...
starting phase `set-SOURCE-DATE-EPOCH'
phase `set-SOURCE-DATE-EPOCH' succeeded after 0.0 seconds
starting phase `set-paths'
environment variable `PATH' set to `/gnu/store/xp9618n1024d73p3w5psfbpyjc3ly6v3-gettext-minimal-0.21/bin:/gnu/store/bbgqhhzf65786riq9zanh18fg5rnv5yx-perl-5.30.2/bin:/gnu/store/1pdhjkcq5nd7w3jvah158ab44c0g5lkn-coreutils-8.32/bin:/gnu/store/n23zs3l9kn5zgqhv81k0lvi6p08ii20c-grep-3.4/bin:/gnu/store/v2jpdfl2f6rlz4r5lg6kyw0a11qqz7wk-bash-minimal-5.0.16/bin:/gnu/store/4s1gwy11yj6f5k7l6bapbdn5dd3kmh58-gcc-7.5.0/bin:/gnu/store/3bifgahpm5r3p0hwnyxzq4xv7rplw8vs-ld-wrapper-boot3-0/bin:/gnu/store/f4jf3s86mrj5gg3mcxx2i3cb9z1i0w6d-glibc-2.31/bin:/gnu/store/f4jf3s86mrj5gg3mcxx2i3cb9z1i0w6d-glibc-2.31/sbin:/gnu/store/8q9jrx110bd7xyqslkvvc110ccm6spra-ld-wrapper-boot0-0/bin:/gnu/store/ixxiz2xp5wqw0cmbqsw9yc61xdpqhxip-binutils-cross-boot0-2.34/bin:/gnu/store/alaix282biwsf7f08jv49dsvsbv184yy-bzip2-boot0-1.0.8/bin:/gnu/store/ldhl90il6v5nz41f4x8kdssmbnczj9rh-coreutils-boot0-8.32/bin:/gnu/store/34jfjm0hyl0ljc969hrdzx98n7wl6lad-gawk-boot0-2.7.6/bin:/gnu/store/n212669sp042yzzsajzlyavl6fnzignd-patch-boot0-2.7.6/bin:/gnu/store/wz554da0rdx5jr2vp8s8s196qvrp1ld1-sed-boot0-4.8/bin:/gnu/store/m1ksmqcr1bgf1mb3a5q8my0xkrf6l3b3-tar-boot0-1.32/bin:/gnu/store/9r6h42gx92f7rw6p8p78diznvaav8kzd-make-boot0-4.3/bin:/gnu/store/6d8757m35hcjz5qxvx9i1wh9ms3jgbib-diffutils-boot0-3.7/bin:/gnu/store/mvv4r2i3a8bbva2ip9kw2a6f0mjb7nrb-findutils-boot0-4.7.0/bin:/gnu/store/xgc5a99q1a6xbipvwvazja6nsbg3lrvc-file-boot0-5.39/bin:/gnu/store/k54s4xdiq1dmhpkhz2nyjlraij0zn9dp-coreutils-mesboot-8.32/bin:/gnu/store/17xir3fjcxa5ls4f4jc5jk98v9nlbqcj-gcc-mesboot-wrapper-4.9.4/bin:/gnu/store/npns8wjlmw0n3zqrwr7qxz93kqswrf5c-xz-mesboot-5.0.0/bin:/gnu/store/nr0vdmml07bfibklqfws16kv43gvszb2-gawk-mesboot-3.1.8/bin:/gnu/store/k4k7kysrf0if0kcdc8lmzkdhqxmgxwhk-grep-mesboot-2.0/bin:/gnu/store/d4x9idzc5ac3qbaa7d0hck6gn46mab2m-make-mesboot-3.82/bin:/gnu/store/pdyr6f7ycl11jnf8f5da5wzn7bsdw0sk-sed-mesboot-4.0.6/bin:/gnu/store/gv7zyigl32y15yng0a6ja0s7nnva0gk8-tar-mesboot-1.22/bin:/gnu/store/dgm6sqx2wfk0464lry8np1vd849wqaxh-bzip2-mesboot-1.0.8/bin:/gnu/store/7vlv92qzy1vsb04n2vgf5f9rssi8f309-diffutils-mesboot-2.7/bin:/gnu/store/npzk4d8yxinwki460nzqplg4alk03bkm-gzip-mesboot-1.2.4/bin:/gnu/store/m4ww19kqjy9cwwh3pfxgrqq2js71l478-patch-mesboot-2.5.9/bin:/gnu/store/rm7bwgxq7vvmqd3yv1ppwil61767rzy7-attr-2.4.48/bin'
environment variable `PERL5LIB' set to `/gnu/store/bbgqhhzf65786riq9zanh18fg5rnv5yx-perl-5.30.2/lib/perl5/site_perl'
environment variable `BASH_LOADABLES_PATH' unset
environment variable `C_INCLUDE_PATH' set to `/gnu/store/xp9618n1024d73p3w5psfbpyjc3ly6v3-gettext-minimal-0.21/include:/gnu/store/4s1gwy11yj6f5k7l6bapbdn5dd3kmh58-gcc-7.5.0/include:/gnu/store/f4jf3s86mrj5gg3mcxx2i3cb9z1i0w6d-glibc-2.31/include:/gnu/store/ixxiz2xp5wqw0cmbqsw9yc61xdpqhxip-binutils-cross-boot0-2.34/include:/gnu/store/alaix282biwsf7f08jv49dsvsbv184yy-bzip2-boot0-1.0.8/include:/gnu/store/34jfjm0hyl0ljc969hrdzx98n7wl6lad-gawk-boot0-2.7.6/include:/gnu/store/xgc5a99q1a6xbipvwvazja6nsbg3lrvc-file-boot0-5.39/include:/gnu/store/npns8wjlmw0n3zqrwr7qxz93kqswrf5c-xz-mesboot-5.0.0/include:/gnu/store/dgm6sqx2wfk0464lry8np1vd849wqaxh-bzip2-mesboot-1.0.8/include:/gnu/store/rm7bwgxq7vvmqd3yv1ppwil61767rzy7-attr-2.4.48/include:/gnu/store/9d2bygy7mq95qmf2s1b7yvfzi1x07fcs-linux-libre-headers-5.4.20/include'
environment variable `CPLUS_INCLUDE_PATH' set to `/gnu/store/xp9618n1024d73p3w5psfbpyjc3ly6v3-gettext-minimal-0.21/include:/gnu/store/4s1gwy11yj6f5k7l6bapbdn5dd3kmh58-gcc-7.5.0/include/c++:/gnu/store/4s1gwy11yj6f5k7l6bapbdn5dd3kmh58-gcc-7.5.0/include:/gnu/store/f4jf3s86mrj5gg3mcxx2i3cb9z1i0w6d-glibc-2.31/include:/gnu/store/ixxiz2xp5wqw0cmbqsw9yc61xdpqhxip-binutils-cross-boot0-2.34/include:/gnu/store/alaix282biwsf7f08jv49dsvsbv184yy-bzip2-boot0-1.0.8/include:/gnu/store/34jfjm0hyl0ljc969hrdzx98n7wl6lad-gawk-boot0-2.7.6/include:/gnu/store/xgc5a99q1a6xbipvwvazja6nsbg3lrvc-file-boot0-5.39/include:/gnu/store/npns8wjlmw0n3zqrwr7qxz93kqswrf5c-xz-mesboot-5.0.0/include:/gnu/store/dgm6sqx2wfk0464lry8np1vd849wqaxh-bzip2-mesboot-1.0.8/include:/gnu/store/rm7bwgxq7vvmqd3yv1ppwil61767rzy7-attr-2.4.48/include:/gnu/store/9d2bygy7mq95qmf2s1b7yvfzi1x07fcs-linux-libre-headers-5.4.20/include'
environment variable `LIBRARY_PATH' set to `/gnu/store/xp9618n1024d73p3w5psfbpyjc3ly6v3-gettext-minimal-0.21/lib:/gnu/store/bbgqhhzf65786riq9zanh18fg5rnv5yx-perl-5.30.2/lib:/gnu/store/rglk5im1drw3gkrnlrrbwffn7ycc4z9x-glibc-utf8-locales-2.31/lib:/gnu/store/f4jf3s86mrj5gg3mcxx2i3cb9z1i0w6d-glibc-2.31/lib:/gnu/store/gmdi7fqnnf913c68ylhxxvrrx4aqak8c-glibc-2.31-static/lib:/gnu/store/ixxiz2xp5wqw0cmbqsw9yc61xdpqhxip-binutils-cross-boot0-2.34/lib:/gnu/store/alaix282biwsf7f08jv49dsvsbv184yy-bzip2-boot0-1.0.8/lib:/gnu/store/34jfjm0hyl0ljc969hrdzx98n7wl6lad-gawk-boot0-2.7.6/lib:/gnu/store/xgc5a99q1a6xbipvwvazja6nsbg3lrvc-file-boot0-5.39/lib:/gnu/store/npns8wjlmw0n3zqrwr7qxz93kqswrf5c-xz-mesboot-5.0.0/lib:/gnu/store/dgm6sqx2wfk0464lry8np1vd849wqaxh-bzip2-mesboot-1.0.8/lib:/gnu/store/rm7bwgxq7vvmqd3yv1ppwil61767rzy7-attr-2.4.48/lib'
environment variable `GUIX_LOCPATH' set to `/gnu/store/rglk5im1drw3gkrnlrrbwffn7ycc4z9x-glibc-utf8-locales-2.31/lib/locale'
environment variable `C_INCLUDE_PATH' set to `/gnu/store/xp9618n1024d73p3w5psfbpyjc3ly6v3-gettext-minimal-0.21/include:/gnu/store/4s1gwy11yj6f5k7l6bapbdn5dd3kmh58-gcc-7.5.0/include:/gnu/store/f4jf3s86mrj5gg3mcxx2i3cb9z1i0w6d-glibc-2.31/include:/gnu/store/ixxiz2xp5wqw0cmbqsw9yc61xdpqhxip-binutils-cross-boot0-2.34/include:/gnu/store/alaix282biwsf7f08jv49dsvsbv184yy-bzip2-boot0-1.0.8/include:/gnu/store/34jfjm0hyl0ljc969hrdzx98n7wl6lad-gawk-boot0-2.7.6/include:/gnu/store/xgc5a99q1a6xbipvwvazja6nsbg3lrvc-file-boot0-5.39/include:/gnu/store/npns8wjlmw0n3zqrwr7qxz93kqswrf5c-xz-mesboot-5.0.0/include:/gnu/store/dgm6sqx2wfk0464lry8np1vd849wqaxh-bzip2-mesboot-1.0.8/include:/gnu/store/rm7bwgxq7vvmqd3yv1ppwil61767rzy7-attr-2.4.48/include:/gnu/store/9d2bygy7mq95qmf2s1b7yvfzi1x07fcs-linux-libre-headers-5.4.20/include'
environment variable `LIBRARY_PATH' set to `/gnu/store/xp9618n1024d73p3w5psfbpyjc3ly6v3-gettext-minimal-0.21/lib:/gnu/store/bbgqhhzf65786riq9zanh18fg5rnv5yx-perl-5.30.2/lib:/gnu/store/rglk5im1drw3gkrnlrrbwffn7ycc4z9x-glibc-utf8-locales-2.31/lib:/gnu/store/f4jf3s86mrj5gg3mcxx2i3cb9z1i0w6d-glibc-2.31/lib:/gnu/store/gmdi7fqnnf913c68ylhxxvrrx4aqak8c-glibc-2.31-static/lib:/gnu/store/ixxiz2xp5wqw0cmbqsw9yc61xdpqhxip-binutils-cross-boot0-2.34/lib:/gnu/store/alaix282biwsf7f08jv49dsvsbv184yy-bzip2-boot0-1.0.8/lib:/gnu/store/34jfjm0hyl0ljc969hrdzx98n7wl6lad-gawk-boot0-2.7.6/lib:/gnu/store/xgc5a99q1a6xbipvwvazja6nsbg3lrvc-file-boot0-5.39/lib:/gnu/store/npns8wjlmw0n3zqrwr7qxz93kqswrf5c-xz-mesboot-5.0.0/lib:/gnu/store/dgm6sqx2wfk0464lry8np1vd849wqaxh-bzip2-mesboot-1.0.8/lib:/gnu/store/rm7bwgxq7vvmqd3yv1ppwil61767rzy7-attr-2.4.48/lib'
phase `set-paths' succeeded after 0.0 seconds
starting phase `install-locale'
using 'en_US.utf8' locale for category "LC_ALL"
phase `install-locale' succeeded after 0.0 seconds
starting phase `unpack'
acl-2.2.53/
acl-2.2.53/README
acl-2.2.53/tools/
acl-2.2.53/tools/chacl.c
acl-2.2.53/tools/parse.h
acl-2.2.53/tools/do_set.h
acl-2.2.53/tools/sequence.c
acl-2.2.53/tools/getfacl.c
acl-2.2.53/tools/Makemodule.am
acl-2.2.53/tools/sequence.h
acl-2.2.53/tools/user_group.h
acl-2.2.53/tools/user_group.c
acl-2.2.53/tools/do_set.c
acl-2.2.53/tools/setfacl.c
acl-2.2.53/tools/parse.c
acl-2.2.53/include/
acl-2.2.53/include/config.h.in
acl-2.2.53/include/acl.h
acl-2.2.53/include/libacl.h
acl-2.2.53/include/Makemodule.am
acl-2.2.53/include/misc.h
acl-2.2.53/include/walk_tree.h
acl-2.2.53/include/acl_ea.h
acl-2.2.53/examples/
acl-2.2.53/examples/copy-acl.c
acl-2.2.53/examples/README
acl-2.2.53/examples/Makefile
acl-2.2.53/examples/Makemodule.am
acl-2.2.53/examples/copyperm.c
acl-2.2.53/examples/get-acl.c
acl-2.2.53/examples/set-acl.c
acl-2.2.53/m4/
acl-2.2.53/m4/libtool.m4
acl-2.2.53/m4/gettext.m4
acl-2.2.53/m4/iconv.m4
acl-2.2.53/m4/lib-prefix.m4
acl-2.2.53/m4/ltsugar.m4
acl-2.2.53/m4/progtest.m4
acl-2.2.53/m4/lib-link.m4
acl-2.2.53/m4/lib-ld.m4
acl-2.2.53/m4/ltoptions.m4
acl-2.2.53/m4/po.m4
acl-2.2.53/m4/intlmacosx.m4
acl-2.2.53/m4/ltversion.m4
acl-2.2.53/m4/package_attrdev.m4
acl-2.2.53/m4/nls.m4
acl-2.2.53/m4/visibility_hidden.m4
acl-2.2.53/m4/lt~obsolete.m4
acl-2.2.53/libmisc/
acl-2.2.53/libmisc/unquote.c
acl-2.2.53/libmisc/walk_tree.c
acl-2.2.53/libmisc/next_line.c
acl-2.2.53/libmisc/high_water_alloc.c
acl-2.2.53/libmisc/Makemodule.am
acl-2.2.53/libmisc/quote.c
acl-2.2.53/aclocal.m4
acl-2.2.53/test/
acl-2.2.53/test/test_passwd.c
acl-2.2.53/test/make-tree
acl-2.2.53/test/getfacl-lfs.test
acl-2.2.53/test/getfacl-noacl.test
acl-2.2.53/test/test.passwd
acl-2.2.53/test/run
acl-2.2.53/test/utf8-filenames.test
acl-2.2.53/test/getfacl-recursive.test
acl-2.2.53/test/sbits-restore.test
acl-2.2.53/test/Makemodule.am
acl-2.2.53/test/nfs/
acl-2.2.53/test/nfs/nfsacl.test
acl-2.2.53/test/nfs/nfs-dir.test
acl-2.2.53/test/malformed-restore-double-owner.acl
acl-2.2.53/test/cp.test
acl-2.2.53/test/root/
acl-2.2.53/test/root/setfacl.test
acl-2.2.53/test/root/permissions.test
acl-2.2.53/test/root/restore.test
acl-2.2.53/test/root/getfacl.test
acl-2.2.53/test/sort-getfacl-output
acl-2.2.53/test/runwrapper
acl-2.2.53/test/misc.test
acl-2.2.53/test/setfacl-X.test
acl-2.2.53/test/test_group.c
acl-2.2.53/test/malformed-restore.test
acl-2.2.53/test/test.group
acl-2.2.53/configure.ac
acl-2.2.53/configure
acl-2.2.53/libacl/
acl-2.2.53/libacl/acl_calc_mask.c
acl-2.2.53/libacl/__acl_extended_file.c
acl-2.2.53/libacl/__acl_from_xattr.h
acl-2.2.53/libacl/acl_delete_def_file.c
acl-2.2.53/libacl/acl_check.c
acl-2.2.53/libacl/__libobj.c
acl-2.2.53/libacl/perm_copy_fd.c
acl-2.2.53/libacl/acl_equiv_mode.c
acl-2.2.53/libacl/acl_copy_int.c
acl-2.2.53/libacl/acl_copy_entry.c
acl-2.2.53/libacl/acl_get_permset.c
acl-2.2.53/libacl/acl_extended_fd.c
acl-2.2.53/libacl/acl_delete_perm.c
acl-2.2.53/libacl/__acl_extended_file.h
acl-2.2.53/libacl/acl_init.c
acl-2.2.53/libacl/acl_copy_ext.c
acl-2.2.53/libacl/acl_cmp.c
acl-2.2.53/libacl/__acl_to_xattr.c
acl-2.2.53/libacl/perm_copy.h
acl-2.2.53/libacl/acl_set_tag_type.c
acl-2.2.53/libacl/byteorder.h
acl-2.2.53/libacl/libacl.h
acl-2.2.53/libacl/acl_error.c
acl-2.2.53/libacl/Makemodule.am
acl-2.2.53/libacl/acl_to_any_text.c
acl-2.2.53/libacl/__acl_reorder_obj_p.c
acl-2.2.53/libacl/__apply_mask_to_mode.c
acl-2.2.53/libacl/acl_dup.c
acl-2.2.53/libacl/acl_get_fd.c
acl-2.2.53/libacl/acl_to_text.c
acl-2.2.53/libacl/acl_delete_entry.c
acl-2.2.53/libacl/acl_extended_file_nofollow.c
acl-2.2.53/libacl/acl_get_tag_type.c
acl-2.2.53/libacl/acl_add_perm.c
acl-2.2.53/libacl/acl_get_file.c
acl-2.2.53/libacl/acl_valid.c
acl-2.2.53/libacl/acl_clear_perms.c
acl-2.2.53/libacl/acl_free.c
acl-2.2.53/libacl/acl_entries.c
acl-2.2.53/libacl/acl_from_text.c
acl-2.2.53/libacl/__acl_to_xattr.h
acl-2.2.53/libacl/acl_from_mode.c
acl-2.2.53/libacl/acl_set_qualifier.c
acl-2.2.53/libacl/acl_get_entry.c
acl-2.2.53/libacl/libobj.h
acl-2.2.53/libacl/acl_set_file.c
acl-2.2.53/libacl/acl_extended_file.c
acl-2.2.53/libacl/acl_get_qualifier.c
acl-2.2.53/libacl/__acl_to_any_text.c
acl-2.2.53/libacl/__acl_from_xattr.c
acl-2.2.53/libacl/acl_set_fd.c
acl-2.2.53/libacl/acl_get_perm.c
acl-2.2.53/libacl/acl_create_entry.c
acl-2.2.53/libacl/perm_copy_file.c
acl-2.2.53/libacl/acl_size.c
acl-2.2.53/libacl/acl_set_permset.c
acl-2.2.53/exports
acl-2.2.53/build-aux/
acl-2.2.53/build-aux/install-sh
acl-2.2.53/build-aux/config.rpath
acl-2.2.53/build-aux/ar-lib
acl-2.2.53/build-aux/compile
acl-2.2.53/build-aux/missing
acl-2.2.53/build-aux/config.sub
acl-2.2.53/build-aux/depcomp
acl-2.2.53/build-aux/config.guess
acl-2.2.53/build-aux/test-driver
acl-2.2.53/build-aux/ltmain.sh
acl-2.2.53/Makefile.am
acl-2.2.53/ABOUT-NLS
acl-2.2.53/Makefile.in
acl-2.2.53/doc/
acl-2.2.53/doc/TODO
acl-2.2.53/doc/PORTING
acl-2.2.53/doc/COPYING.LGPL
acl-2.2.53/doc/Makemodule.am
acl-2.2.53/doc/COPYING
acl-2.2.53/doc/extensions.txt
acl-2.2.53/doc/CHANGES
acl-2.2.53/doc/libacl.txt
acl-2.2.53/libacl.pc.in
acl-2.2.53/man/
acl-2.2.53/man/man5/
acl-2.2.53/man/man5/Makemodule.am
acl-2.2.53/man/man5/acl.5
acl-2.2.53/man/Makemodule.am
acl-2.2.53/man/man1/
acl-2.2.53/man/man1/Makemodule.am
acl-2.2.53/man/man1/chacl.1
acl-2.2.53/man/man1/getfacl.1
acl-2.2.53/man/man1/setfacl.1
acl-2.2.53/man/man3/
acl-2.2.53/man/man3/acl_get_permset.3
acl-2.2.53/man/man3/acl_from_text.3
acl-2.2.53/man/man3/acl_get_perm.3
acl-2.2.53/man/man3/acl_get_qualifier.3
acl-2.2.53/man/man3/acl_extended_file_nofollow.3
acl-2.2.53/man/man3/acl_equiv_mode.3
acl-2.2.53/man/man3/acl_calc_mask.3
acl-2.2.53/man/man3/acl_from_mode.3
acl-2.2.53/man/man3/acl_init.3
acl-2.2.53/man/man3/acl_copy_ext.3
acl-2.2.53/man/man3/acl_set_qualifier.3
acl-2.2.53/man/man3/acl_valid.3
acl-2.2.53/man/man3/acl_free.3
acl-2.2.53/man/man3/acl_check.3
acl-2.2.53/man/man3/acl_dup.3
acl-2.2.53/man/man3/acl_cmp.3
acl-2.2.53/man/man3/Makemodule.am
acl-2.2.53/man/man3/acl_copy_entry.3
acl-2.2.53/man/man3/acl_size.3
acl-2.2.53/man/man3/acl_set_tag_type.3
acl-2.2.53/man/man3/acl_error.3
acl-2.2.53/man/man3/acl_add_perm.3
acl-2.2.53/man/man3/acl_get_entry.3
acl-2.2.53/man/man3/acl_copy_int.3
acl-2.2.53/man/man3/acl_delete_entry.3
acl-2.2.53/man/man3/acl_set_file.3
acl-2.2.53/man/man3/acl_clear_perms.3
acl-2.2.53/man/man3/acl_extended_fd.3
acl-2.2.53/man/man3/acl_extended_file.3
acl-2.2.53/man/man3/acl_set_fd.3
acl-2.2.53/man/man3/acl_delete_def_file.3
acl-2.2.53/man/man3/acl_to_text.3
acl-2.2.53/man/man3/acl_to_any_text.3
acl-2.2.53/man/man3/acl_set_permset.3
acl-2.2.53/man/man3/acl_get_tag_type.3
acl-2.2.53/man/man3/acl_entries.3
acl-2.2.53/man/man3/acl_get_fd.3
acl-2.2.53/man/man3/acl_create_entry.3
acl-2.2.53/man/man3/acl_delete_perm.3
acl-2.2.53/man/man3/acl_get_file.3
acl-2.2.53/po/
acl-2.2.53/po/insert-header.sin
acl-2.2.53/po/POTFILES.in
acl-2.2.53/po/quot.sed
acl-2.2.53/po/LINGUAS
acl-2.2.53/po/fr.gmo
acl-2.2.53/po/Makevars
acl-2.2.53/po/es.gmo
acl-2.2.53/po/pl.gmo
acl-2.2.53/po/de.po
acl-2.2.53/po/gl.po
acl-2.2.53/po/de.gmo
acl-2.2.53/po/en@quot.gmo
acl-2.2.53/po/es.po
acl-2.2.53/po/boldquot.sed
acl-2.2.53/po/pl.po
acl-2.2.53/po/stamp-po
acl-2.2.53/po/fr.po
acl-2.2.53/po/en@quot.po
acl-2.2.53/po/en@boldquot.gmo
acl-2.2.53/po/Rules-quot
acl-2.2.53/po/acl.pot
acl-2.2.53/po/en@boldquot.header
acl-2.2.53/po/remove-potcdate.sin
acl-2.2.53/po/Makefile.in.in
acl-2.2.53/po/en@quot.header
acl-2.2.53/po/sv.po
acl-2.2.53/po/en@boldquot.po
acl-2.2.53/po/sv.gmo
acl-2.2.53/po/gl.gmo
phase `unpack' succeeded after 0.0 seconds
starting phase `ensure-no-mtimes-pre-1980'
phase `ensure-no-mtimes-pre-1980' succeeded after 0.0 seconds
starting phase `bootstrap'
GNU build system bootstrapping not needed
phase `bootstrap' succeeded after 0.0 seconds
starting phase `patch-usr-bin-file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/xgc5a99q1a6xbipvwvazja6nsbg3lrvc-file-boot0-5.39/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/xgc5a99q1a6xbipvwvazja6nsbg3lrvc-file-boot0-5.39/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/xgc5a99q1a6xbipvwvazja6nsbg3lrvc-file-boot0-5.39/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/xgc5a99q1a6xbipvwvazja6nsbg3lrvc-file-boot0-5.39/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/xgc5a99q1a6xbipvwvazja6nsbg3lrvc-file-boot0-5.39/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/xgc5a99q1a6xbipvwvazja6nsbg3lrvc-file-boot0-5.39/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/xgc5a99q1a6xbipvwvazja6nsbg3lrvc-file-boot0-5.39/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/xgc5a99q1a6xbipvwvazja6nsbg3lrvc-file-boot0-5.39/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/xgc5a99q1a6xbipvwvazja6nsbg3lrvc-file-boot0-5.39/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/xgc5a99q1a6xbipvwvazja6nsbg3lrvc-file-boot0-5.39/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/xgc5a99q1a6xbipvwvazja6nsbg3lrvc-file-boot0-5.39/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/xgc5a99q1a6xbipvwvazja6nsbg3lrvc-file-boot0-5.39/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/xgc5a99q1a6xbipvwvazja6nsbg3lrvc-file-boot0-5.39/bin/file'
phase `patch-usr-bin-file' succeeded after 0.1 seconds
starting phase `patch-source-shebangs'
patch-shebang: ./build-aux/ar-lib: changing `/bin/sh' to `/gnu/store/v2jpdfl2f6rlz4r5lg6kyw0a11qqz7wk-bash-minimal-5.0.16/bin/sh'
patch-shebang: ./build-aux/compile: changing `/bin/sh' to `/gnu/store/v2jpdfl2f6rlz4r5lg6kyw0a11qqz7wk-bash-minimal-5.0.16/bin/sh'
patch-shebang: ./build-aux/config.guess: changing `/bin/sh' to `/gnu/store/v2jpdfl2f6rlz4r5lg6kyw0a11qqz7wk-bash-minimal-5.0.16/bin/sh'
patch-shebang: ./build-aux/config.rpath: changing `/bin/sh' to `/gnu/store/v2jpdfl2f6rlz4r5lg6kyw0a11qqz7wk-bash-minimal-5.0.16/bin/sh'
patch-shebang: ./build-aux/config.sub: changing `/bin/sh' to `/gnu/store/v2jpdfl2f6rlz4r5lg6kyw0a11qqz7wk-bash-minimal-5.0.16/bin/sh'
patch-shebang: ./build-aux/depcomp: changing `/bin/sh' to `/gnu/store/v2jpdfl2f6rlz4r5lg6kyw0a11qqz7wk-bash-minimal-5.0.16/bin/sh'
patch-shebang: ./build-aux/install-sh: changing `/bin/sh' to `/gnu/store/v2jpdfl2f6rlz4r5lg6kyw0a11qqz7wk-bash-minimal-5.0.16/bin/sh'
patch-shebang: ./build-aux/ltmain.sh: changing `/bin/sh' to `/gnu/store/v2jpdfl2f6rlz4r5lg6kyw0a11qqz7wk-bash-minimal-5.0.16/bin/sh'
patch-shebang: ./build-aux/missing: changing `/bin/sh' to `/gnu/store/v2jpdfl2f6rlz4r5lg6kyw0a11qqz7wk-bash-minimal-5.0.16/bin/sh'
patch-shebang: ./build-aux/test-driver: changing `/bin/sh' to `/gnu/store/v2jpdfl2f6rlz4r5lg6kyw0a11qqz7wk-bash-minimal-5.0.16/bin/sh'
patch-shebang: ./configure: changing `/bin/sh' to `/gnu/store/v2jpdfl2f6rlz4r5lg6kyw0a11qqz7wk-bash-minimal-5.0.16/bin/sh'
patch-shebang: ./test/make-tree: changing `/bin/sh' to `/gnu/store/v2jpdfl2f6rlz4r5lg6kyw0a11qqz7wk-bash-minimal-5.0.16/bin/sh'
patch-shebang: ./test/run: changing `/usr/bin/perl' to `/gnu/store/bbgqhhzf65786riq9zanh18fg5rnv5yx-perl-5.30.2/bin/perl'
patch-shebang: ./test/runwrapper: changing `/bin/bash' to `/gnu/store/v2jpdfl2f6rlz4r5lg6kyw0a11qqz7wk-bash-minimal-5.0.16/bin/bash'
patch-shebang: ./test/sort-getfacl-output: changing `/usr/bin/perl' to `/gnu/store/bbgqhhzf65786riq9zanh18fg5rnv5yx-perl-5.30.2/bin/perl'
phase `patch-source-shebangs' succeeded after 0.0 seconds
starting phase `configure'
source directory: "/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53" (relative from build: ".")
build directory: "/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53"
configure flags: ("CONFIG_SHELL=/gnu/store/v2jpdfl2f6rlz4r5lg6kyw0a11qqz7wk-bash-minimal-5.0.16/bin/bash" "SHELL=/gnu/store/v2jpdfl2f6rlz4r5lg6kyw0a11qqz7wk-bash-minimal-5.0.16/bin/bash" "--prefix=/gnu/store/sc7hn16v4223ckspamvs51zh363mbj9h-acl-2.2.53" "--enable-fast-install" "--build=x86_64-unknown-linux-gnu" "--disable-static")
checking for a BSD-compatible install... /gnu/store/1pdhjkcq5nd7w3jvah158ab44c0g5lkn-coreutils-8.32/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /gnu/store/1pdhjkcq5nd7w3jvah158ab44c0g5lkn-coreutils-8.32/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... no
checking whether make supports nested variables... yes
checking whether make supports nested variables... (cached) yes
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking whether gcc understands -c and -o together... yes
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /gnu/store/n23zs3l9kn5zgqhv81k0lvi6p08ii20c-grep-3.4/bin/grep
checking for egrep... /gnu/store/n23zs3l9kn5zgqhv81k0lvi6p08ii20c-grep-3.4/bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking whether __attribute__((visibility())) is supported... yes
checking whether byte ordering is bigendian... no
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... no
checking for ar... ar
checking the archiver (ar) interface... ar
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking how to print strings... printf
checking for a sed that does not truncate output... /gnu/store/wz554da0rdx5jr2vp8s8s196qvrp1ld1-sed-boot0-4.8/bin/sed
checking for fgrep... /gnu/store/n23zs3l9kn5zgqhv81k0lvi6p08ii20c-grep-3.4/bin/grep -F
checking for ld used by gcc... /gnu/store/3bifgahpm5r3p0hwnyxzq4xv7rplw8vs-ld-wrapper-boot3-0/bin/ld
checking if the linker (/gnu/store/3bifgahpm5r3p0hwnyxzq4xv7rplw8vs-ld-wrapper-boot3-0/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /gnu/store/ixxiz2xp5wqw0cmbqsw9yc61xdpqhxip-binutils-cross-boot0-2.34/bin/nm -B
checking the name lister (/gnu/store/ixxiz2xp5wqw0cmbqsw9yc61xdpqhxip-binutils-cross-boot0-2.34/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /gnu/store/3bifgahpm5r3p0hwnyxzq4xv7rplw8vs-ld-wrapper-boot3-0/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /gnu/store/ixxiz2xp5wqw0cmbqsw9yc61xdpqhxip-binutils-cross-boot0-2.34/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for a working dd... /gnu/store/1pdhjkcq5nd7w3jvah158ab44c0g5lkn-coreutils-8.32/bin/dd
checking how to truncate binary pipes... /gnu/store/1pdhjkcq5nd7w3jvah158ab44c0g5lkn-coreutils-8.32/bin/dd bs=4096 count=1
checking for mt... no
checking if : is a manifest tool... no
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/gnu/store/3bifgahpm5r3p0hwnyxzq4xv7rplw8vs-ld-wrapper-boot3-0/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
checking whether NLS is requested... yes
checking for msgfmt... /gnu/store/xp9618n1024d73p3w5psfbpyjc3ly6v3-gettext-minimal-0.21/bin/msgfmt
checking for gmsgfmt... /gnu/store/xp9618n1024d73p3w5psfbpyjc3ly6v3-gettext-minimal-0.21/bin/msgfmt
checking for xgettext... /gnu/store/xp9618n1024d73p3w5psfbpyjc3ly6v3-gettext-minimal-0.21/bin/xgettext
checking for msgmerge... /gnu/store/xp9618n1024d73p3w5psfbpyjc3ly6v3-gettext-minimal-0.21/bin/msgmerge
checking for ld used by gcc... /gnu/store/3bifgahpm5r3p0hwnyxzq4xv7rplw8vs-ld-wrapper-boot3-0/bin/ld -m elf_x86_64
checking if the linker (/gnu/store/3bifgahpm5r3p0hwnyxzq4xv7rplw8vs-ld-wrapper-boot3-0/bin/ld -m elf_x86_64) is GNU ld... yes
checking for shared library run path origin... done
checking for CFPreferencesCopyAppValue... no
checking for CFLocaleCopyCurrent... no
checking for GNU gettext in libc... yes
checking whether to use NLS... yes
checking where the gettext function comes from... libc
checking attr/error_context.h usability... yes
checking attr/error_context.h presence... yes
checking for attr/error_context.h... yes
checking for getxattr in -lattr... yes
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating libacl.pc
config.status: creating Makefile
config.status: creating po/Makefile.in
config.status: creating include/config.h
config.status: executing depfiles commands
config.status: executing libtool commands
config.status: executing po-directories commands
config.status: creating po/POTFILES
config.status: creating po/Makefile
config.status: executing include/acl commands
config.status: executing include/sys commands
phase `configure' succeeded after 2.8 seconds
starting phase `patch-generated-file-shebangs'
patch-makefile-SHELL: ./po/Makefile: changing `SHELL' from `/bin/sh' to `/gnu/store/v2jpdfl2f6rlz4r5lg6kyw0a11qqz7wk-bash-minimal-5.0.16/bin/sh'
phase `patch-generated-file-shebangs' succeeded after 0.0 seconds
starting phase `build'
Making all in po
make[1]: Entering directory '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/po'
make[1]: Nothing to be done for 'all'.
make[1]: Leaving directory '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/po'
make[1]: Entering directory '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53'
  CC       libacl/libacl_la-acl_add_perm.lo
  CC       libacl/libacl_la-acl_calc_mask.lo
  CC       libacl/libacl_la-acl_clear_perms.lo
  CC       libacl/libacl_la-acl_copy_entry.lo
  CC       libacl/libacl_la-acl_copy_ext.lo
  CC       libacl/libacl_la-acl_copy_int.lo
  CC       libacl/libacl_la-acl_create_entry.lo
  CC       libacl/libacl_la-acl_delete_def_file.lo
  CC       libacl/libacl_la-acl_delete_entry.lo
  CC       libacl/libacl_la-acl_delete_perm.lo
  CC       libacl/libacl_la-acl_dup.lo
  CC       libacl/libacl_la-acl_free.lo
  CC       libacl/libacl_la-acl_from_text.lo
  CC       libacl/libacl_la-acl_get_entry.lo
  CC       libacl/libacl_la-acl_get_fd.lo
  CC       libacl/libacl_la-acl_get_file.lo
  CC       libacl/libacl_la-acl_get_perm.lo
  CC       libacl/libacl_la-acl_get_permset.lo
  CC       libacl/libacl_la-acl_get_qualifier.lo
  CC       libacl/libacl_la-acl_get_tag_type.lo
  CC       libacl/libacl_la-acl_init.lo
  CC       libacl/libacl_la-acl_set_fd.lo
  CC       libacl/libacl_la-acl_set_file.lo
  CC       libacl/libacl_la-acl_set_permset.lo
  CC       libacl/libacl_la-acl_set_qualifier.lo
  CC       libacl/libacl_la-acl_set_tag_type.lo
  CC       libacl/libacl_la-acl_size.lo
  CC       libacl/libacl_la-acl_to_text.lo
  CC       libacl/libacl_la-acl_valid.lo
  CC       libacl/libacl_la-acl_check.lo
  CC       libacl/libacl_la-acl_cmp.lo
  CC       libacl/libacl_la-acl_entries.lo
  CC       libacl/libacl_la-acl_equiv_mode.lo
  CC       libacl/libacl_la-acl_error.lo
  CC       libacl/libacl_la-acl_extended_fd.lo
  CC       libacl/libacl_la-acl_extended_file.lo
  CC       libacl/libacl_la-acl_extended_file_nofollow.lo
  CC       libacl/libacl_la-acl_from_mode.lo
  CC       libacl/libacl_la-acl_to_any_text.lo
  CC       libacl/libacl_la-__acl_extended_file.lo
  CC       libacl/libacl_la-__acl_from_xattr.lo
  CC       libacl/libacl_la-__acl_reorder_obj_p.lo
  CC       libacl/libacl_la-__acl_to_any_text.lo
  CC       libacl/libacl_la-__acl_to_xattr.lo
  CC       libacl/libacl_la-__apply_mask_to_mode.lo
  CC       libacl/libacl_la-__libobj.lo
  CC       libacl/libacl_la-perm_copy_fd.lo
  CC       libacl/libacl_la-perm_copy_file.lo
  CC       libmisc/high_water_alloc.lo
  CC       libmisc/next_line.lo
  CC       libmisc/quote.lo
  CC       libmisc/unquote.lo
  CC       libmisc/walk_tree.lo
  CC       tools/chacl.o
  CC       tools/getfacl.o
  CC       tools/user_group.o
  CC       tools/do_set.o
  CC       tools/parse.o
  CC       tools/sequence.o
  CC       tools/setfacl.o
  CCLD     libmisc.la
ar: `u' modifier ignored since `D' is the default (see `U')
  CCLD     libacl.la
  CCLD     chacl
  CCLD     getfacl
  CCLD     setfacl
make[1]: Leaving directory '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53'
phase `build' succeeded after 2.3 seconds
starting phase `patch-exec-bin-sh'
phase `patch-exec-bin-sh' succeeded after 0.0 seconds
starting phase `patch-tests'
phase `patch-tests' succeeded after 0.0 seconds
starting phase `check'
 cd . && /gnu/store/v2jpdfl2f6rlz4r5lg6kyw0a11qqz7wk-bash-minimal-5.0.16/bin/bash ./config.status Makefile depfiles
config.status: creating Makefile
config.status: executing depfiles commands
Making check in po
make[1]: Entering directory '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/po'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/po'
make[1]: Entering directory '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53'
make  libtestlookup.la
make[2]: Entering directory '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53'
  CC       test/libtestlookup_la-test_passwd.lo
  CC       test/libtestlookup_la-test_group.lo
  CCLD     libtestlookup.la
make[2]: Leaving directory '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53'
make  check-TESTS
make[2]: Entering directory '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53'
make[3]: Entering directory '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53'
FAIL: test/getfacl-lfs.test
FAIL: test/malformed-restore.test
FAIL: test/getfacl-recursive.test
FAIL: test/sbits-restore.test
FAIL: test/getfacl-noacl.test
SKIP: test/root/getfacl.test
FAIL: test/utf8-filenames.test
SKIP: test/root/permissions.test
SKIP: test/root/restore.test
SKIP: test/root/setfacl.test
XFAIL: test/nfs/nfsacl.test
XFAIL: test/nfs/nfs-dir.test
============================================================================
Testsuite summary for acl 2.2.53
============================================================================
# TOTAL: 12
# PASS:  0
# SKIP:  4
# XFAIL: 2
# FAIL:  6
# XPASS: 0
# ERROR: 0
============================================================================
See ./test-suite.log
Please report to acl-devel@nongnu.org
============================================================================
make[3]: *** [Makefile:2007: test-suite.log] Error 1
make[3]: Leaving directory '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53'
make[2]: *** [Makefile:2115: check-TESTS] Error 2
make[2]: Leaving directory '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53'
make[1]: *** [Makefile:2336: check-am] Error 2
make[1]: Leaving directory '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53'
make: *** [Makefile:1892: check-recursive] Error 1

Test suite failed, dumping logs.

--- ./test-suite.log --------------------------------------------------------

==================================
   acl 2.2.53: ./test-suite.log
==================================

# TOTAL: 12
# PASS:  0
# SKIP:  4
# XFAIL: 2
# FAIL:  6
# XPASS: 0
# ERROR: 0

.. contents:: :depth: 2

FAIL: test/getfacl-lfs
======================

[4] $ umask 027 -- ok
[5] $ dd bs=65536 seek=32768 if=/dev/null of=large-file 2>/dev/null ||: -- ok
[6] $ sh -c 'if test -f large-file; then getfacl large-file >/dev/null; fi' -- failed
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
[7] $ rm large-file -- ok
4 commands (3 passed, 1 failed)
FAIL test/getfacl-lfs.test (exit status: 1)

FAIL: test/getfacl-noacl
========================

[4] $ mkdir test -- ok
[5] $ cd test -- ok
[6] $ umask 027 -- ok
[7] $ touch x -- ok
[8] $ getfacl --omit-header x -- failed
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != user::rw-
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != group::r--
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != other::---
user::rw-                             != 
group::r--                            != ~
other::---                            != ~
                                      != ~
[14] $ getfacl --omit-header --access x -- failed
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != user::rw-
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != group::r--
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != other::---
user::rw-                             != 
group::r--                            != ~
other::---                            != ~
                                      != ~
[20] $ getfacl --omit-header -d x -- failed
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
[21] $ getfacl --omit-header -d . -- failed
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
[22] $ getfacl --omit-header -d / -- failed
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != getfacl: Removing leading '/' from absolute path names
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
getfacl: Removing leading '/' from absolute path names != ~
[25] $ getfacl --skip-base x -- failed
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
[26] $ getfacl --omit-header --all-effective x -- failed
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != user::rw-
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != group::r--
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != other::---
user::rw-                             != 
group::r--                            != ~
other::---                            != ~
                                      != ~
[32] $ getfacl --omit-header --no-effective x -- failed
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != user::rw-
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != group::r--
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != other::---
user::rw-                             != 
group::r--                            != ~
other::---                            != ~
                                      != ~
[38] $ mkdir d -- ok
[39] $ touch d/y -- ok
[40] $ ln -s d l -- ok
[41] $ getfacl -dR . | grep file | sort -- failed
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != # file: .
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != # file: d
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != # file: d/y
# file: .                             != # file: x
# file: d                             != ~
# file: d/y                           != ~
# file: x                             != ~
[47] $ ln -s l ll -- ok
[48] $ getfacl -dLR ll | grep file | sort -- failed
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != # file: ll
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != # file: ll/y
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
# file: ll                            != ~
# file: ll/y                          != ~
[52] $ rm l ll x -- ok
[53] $ rm -rf d -- ok
[54] $ cd .. -- ok
[55] $ rmdir test -- ok
22 commands (12 passed, 10 failed)
FAIL test/getfacl-noacl.test (exit status: 10)

FAIL: test/getfacl-recursive
============================

[3] $ umask 022 -- ok
[4] $ mkdir -p 1/2/3 -- ok
[5] $ mkdir 1/link -- ok
[6] $ touch 1/link/file -- ok
[7] $ ln -s `pwd`/1/link 1/2/link -- ok
[8] $ getfacl -P -R 1/2 | sort-getfacl-output -- failed
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != # file: 1/2
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != # owner: 30001
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != # group: 30000
# file: 1/2                           != user::rwx
# owner: 30001                        != group::r-x
# group: 30000                        != other::r-x
user::rwx                             != 
group::r-x                            != # file: 1/2/3
other::r-x                            != # owner: 30001
                                      != # group: 30000
# file: 1/2/3                         != user::rwx
# owner: 30001                        != group::r-x
# group: 30000                        != other::r-x
user::rwx                             != 
group::r-x                            != ~
other::r-x                            != ~
                                      != ~
[24] $ getfacl -R 1/2 | sort-getfacl-output -- failed
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != # file: 1/2
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != # owner: 30001
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != # group: 30000
# file: 1/2                           != user::rwx
# owner: 30001                        != group::r-x
# group: 30000                        != other::r-x
user::rwx                             != 
group::r-x                            != # file: 1/2/3
other::r-x                            != # owner: 30001
                                      != # group: 30000
# file: 1/2/3                         != user::rwx
# owner: 30001                        != group::r-x
# group: 30000                        != other::r-x
user::rwx                             != 
group::r-x                            != ~
other::r-x                            != ~
                                      != ~
[40] $ getfacl -R -L 1/2 | sort-getfacl-output -- failed
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != # file: 1/2
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != # owner: 30001
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != # group: 30000
# file: 1/2                           != user::rwx
# owner: 30001                        != group::r-x
# group: 30000                        != other::r-x
user::rwx                             != 
group::r-x                            != # file: 1/2/3
other::r-x                            != # owner: 30001
                                      != # group: 30000
# file: 1/2/3                         != user::rwx
# owner: 30001                        != group::r-x
# group: 30000                        != other::r-x
user::rwx                             != 
group::r-x                            != # file: 1/2/link
other::r-x                            != # owner: 30001
                                      != # group: 30000
# file: 1/2/link                      != user::rwx
# owner: 30001                        != group::r-x
# group: 30000                        != other::r-x
user::rwx                             != 
group::r-x                            != # file: 1/2/link/file
other::r-x                            != # owner: 30001
                                      != # group: 30000
# file: 1/2/link/file                 != user::rw-
# owner: 30001                        != group::r--
# group: 30000                        != other::r--
user::rw-                             != 
group::r--                            != ~
other::r--                            != ~
                                      != ~
[70] $ getfacl -P -R 1 | sort-getfacl-output -- failed
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != # file: 1
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != # owner: 30001
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != # group: 30000
# file: 1                             != user::rwx
# owner: 30001                        != group::r-x
# group: 30000                        != other::r-x
user::rwx                             != 
group::r-x                            != # file: 1/2
other::r-x                            != # owner: 30001
                                      != # group: 30000
# file: 1/2                           != user::rwx
# owner: 30001                        != group::r-x
# group: 30000                        != other::r-x
user::rwx                             != 
group::r-x                            != # file: 1/2/3
other::r-x                            != # owner: 30001
                                      != # group: 30000
# file: 1/2/3                         != user::rwx
# owner: 30001                        != group::r-x
# group: 30000                        != other::r-x
user::rwx                             != 
group::r-x                            != # file: 1/link
other::r-x                            != # owner: 30001
                                      != # group: 30000
# file: 1/link                        != user::rwx
# owner: 30001                        != group::r-x
# group: 30000                        != other::r-x
user::rwx                             != 
group::r-x                            != # file: 1/link/file
other::r-x                            != # owner: 30001
                                      != # group: 30000
# file: 1/link/file                   != user::rw-
# owner: 30001                        != group::r--
# group: 30000                        != other::r--
user::rw-                             != 
group::r--                            != ~
other::r--                            != ~
                                      != ~
[107] $ getfacl -R 1 | sort-getfacl-output -- failed
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != # file: 1
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != # owner: 30001
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != # group: 30000
# file: 1                             != user::rwx
# owner: 30001                        != group::r-x
# group: 30000                        != other::r-x
user::rwx                             != 
group::r-x                            != # file: 1/2
other::r-x                            != # owner: 30001
                                      != # group: 30000
# file: 1/2                           != user::rwx
# owner: 30001                        != group::r-x
# group: 30000                        != other::r-x
user::rwx                             != 
group::r-x                            != # file: 1/2/3
other::r-x                            != # owner: 30001
                                      != # group: 30000
# file: 1/2/3                         != user::rwx
# owner: 30001                        != group::r-x
# group: 30000                        != other::r-x
user::rwx                             != 
group::r-x                            != # file: 1/link
other::r-x                            != # owner: 30001
                                      != # group: 30000
# file: 1/link                        != user::rwx
# owner: 30001                        != group::r-x
# group: 30000                        != other::r-x
user::rwx                             != 
group::r-x                            != # file: 1/link/file
other::r-x                            != # owner: 30001
                                      != # group: 30000
# file: 1/link/file                   != user::rw-
# owner: 30001                        != group::r--
# group: 30000                        != other::r--
user::rw-                             != 
group::r--                            != ~
other::r--                            != ~
                                      != ~
[144] $ getfacl -R -L 1 | sort-getfacl-output -- failed
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != # file: 1
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != # owner: 30001
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != # group: 30000
# file: 1                             != user::rwx
# owner: 30001                        != group::r-x
# group: 30000                        != other::r-x
user::rwx                             != 
group::r-x                            != # file: 1/2
other::r-x                            != # owner: 30001
                                      != # group: 30000
# file: 1/2                           != user::rwx
# owner: 30001                        != group::r-x
# group: 30000                        != other::r-x
user::rwx                             != 
group::r-x                            != # file: 1/2/3
other::r-x                            != # owner: 30001
                                      != # group: 30000
# file: 1/2/3                         != user::rwx
# owner: 30001                        != group::r-x
# group: 30000                        != other::r-x
user::rwx                             != 
group::r-x                            != # file: 1/2/link
other::r-x                            != # owner: 30001
                                      != # group: 30000
# file: 1/2/link                      != user::rwx
# owner: 30001                        != group::r-x
# group: 30000                        != other::r-x
user::rwx                             != 
group::r-x                            != # file: 1/2/link/file
other::r-x                            != # owner: 30001
                                      != # group: 30000
# file: 1/2/link/file                 != user::rw-
# owner: 30001                        != group::r--
# group: 30000                        != other::r--
user::rw-                             != 
group::r--                            != # file: 1/link
other::r--                            != # owner: 30001
                                      != # group: 30000
# file: 1/link                        != user::rwx
# owner: 30001                        != group::r-x
# group: 30000                        != other::r-x
user::rwx                             != 
group::r-x                            != # file: 1/link/file
other::r-x                            != # owner: 30001
                                      != # group: 30000
# file: 1/link/file                   != user::rw-
# owner: 30001                        != group::r--
# group: 30000                        != other::r--
user::rw-                             != 
group::r--                            != ~
other::r--                            != ~
                                      != ~
[195] $ rm -R 1/ -- ok
12 commands (6 passed, 6 failed)
FAIL test/getfacl-recursive.test (exit status: 6)

FAIL: test/malformed-restore
============================

[4] $ cp "/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/test/malformed-restore-double-owner.acl" tmp.acl -- ok
[5] $ sed -i "s/USER/30001/g" tmp.acl -- failed
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
[6] $ sed -i "s/GROUP/30000/g" tmp.acl -- failed
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
[7] $ touch tmp -- ok
[8] $ setfacl --restore tmp.acl -- failed
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != setfacl: tmp.acl: Invalid argument
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
setfacl: tmp.acl: Invalid argument    != ~
[10] $ rm tmp.acl tmp -- ok
[12] $ mkdir tmp -- ok
[13] $ chmod 1777 tmp -- ok
[14] $ getfacl tmp > tmp.acl -- failed
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
[15] $ sed -i 's/--t/--x/g' tmp.acl -- failed
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
[16] $ setfacl --restore tmp.acl -- failed
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != setfacl: tmp.acl: Invalid argument
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
setfacl: tmp.acl: Invalid argument    != ~
[18] $ rmdir tmp -- ok
[19] $ rm tmp.acl -- ok
13 commands (7 passed, 6 failed)
FAIL test/malformed-restore.test (exit status: 6)

FAIL: test/sbits-restore
========================

[3] $ umask 022 -- ok
[4] $ mkdir d -- ok
[5] $ touch d/g -- ok
[6] $ touch d/u -- ok
[7] $ chmod u+s d/u -- ok
[8] $ chmod g+s d/g -- ok
[9] $ chmod +t d -- ok
[10] $ getfacl -R d > d.acl -- failed
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
[11] $ rm -R d -- ok
[12] $ mkdir d -- ok
[13] $ touch d/g -- ok
[14] $ touch d/u -- ok
[15] $ setfacl --restore d.acl -- failed
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
[16] $ ls -dl d | awk '{print $1}' -- failed
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != drwxr-xr-t
drwxr-xr-t                            != ~
[18] $ ls -dl d/u | awk '{print $1}' -- failed
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != -rwSr--r--
-rwSr--r--                            != ~
[20] $ ls -dl d/g | awk '{print $1}' -- failed
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != -rw-r-Sr--
-rw-r-Sr--                            != ~
[22] $ rm -Rf d -- ok
17 commands (12 passed, 5 failed)
FAIL test/sbits-restore.test (exit status: 5)

FAIL: test/utf8-filenames
=========================

[8] $ export UPATH="官官話官話官話官話官話官話官話官話官話官話官話官話官話官話官話官話官話官話官話官話官話官話官話官話官話官話官話官話官話官話官話官話官話官話話官話官話官話>官話官話話官話官" -- ok
[9] $ mkdir -p $UPATH/$UPATH/$UPATH -- ok
[10] $ touch $UPATH/$UPATH/$UPATH/$UPATH -- ok
[11] $ getfacl $UPATH/$UPATH/$UPATH/$UPATH > utf8-filenames.acl -- failed
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
[12] $ setfacl --restore=utf8-filenames.acl -- failed
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
[13] $ rm -R $UPATH -- ok
[14] $ rm utf8-filenames.acl -- ok
7 commands (5 passed, 2 failed)
FAIL test/utf8-filenames.test (exit status: 2)

SKIP: test/root/getfacl
=======================

required root failed; skipping test at ./test/run line 286.
[6] $ require_root -- su: Operation not permitted
SKIP test/root/getfacl.test (exit status: 77)

SKIP: test/root/permissions
===========================

required root failed; skipping test at ./test/run line 286.
[12] $ require_root -- su: Operation not permitted
SKIP test/root/permissions.test (exit status: 77)

SKIP: test/root/restore
=======================

required root failed; skipping test at ./test/run line 286.
[6] $ require_root -- su: Operation not permitted
SKIP test/root/restore.test (exit status: 77)

SKIP: test/root/setfacl
=======================

required root failed; skipping test at ./test/run line 286.
[5] $ require_root -- su: Operation not permitted
SKIP test/root/setfacl.test (exit status: 77)

XFAIL: test/nfs/nfsacl
======================

[6] $ umask 022 -- ok
[7] $ mkdir -p test/sub -- ok
[8] $ echo blah > test/sub/blah -- ok
[10] $ cp -rp test/sub test/sub2 -- ok
[11] $ find test/sub2 | sort | xargs ls -dl | awk '{print $1,$8}' -- failed
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != drwxr-xr-x test/sub2
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != -rw-r--r-- test/sub2/blah
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
drwxr-xr-x 14:47                      != ~
-rw-r--r-- 14:47                      != ~
[15] $ rm -rf test/sub2 -- ok
[17] $ setfacl -m u:daemon:rwx test/sub -- failed
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
[18] $ setfacl -dm u:daemon:rwx test/sub -- failed
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
[19] $ getfattr -m- test/sub -- ok
[25] $ cp -rp test/sub test/sub2 -- ok
[26] $ find test/sub2 | sort | xargs ls -dl | awk '{print $1,$8}' -- failed
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != drwxrwxr-x+ test/sub2
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != -rw-r--r-- test/sub2/blah
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
drwxrwxr-x 14:47                      != ~
-rw-r--r-- 14:47                      != ~
[30] $ rm -rf test/sub2 -- ok
[32] $ setfacl -m u:daemon:rw test/sub/blah -- failed
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
[33] $ cp -rp test/sub test/sub2 -- ok
[34] $ find test/sub2 | sort | xargs ls -dl | awk '{print $1,$8}' -- failed
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != drwxrwxr-x+ test/sub2
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != -rw-rw-r--+ test/sub2/blah
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
drwxrwxr-x 14:47                      != ~
-rw-rw-r-- 14:47                      != ~
[38] $ rm -rf test/sub2 -- ok
[42] $ rm -rf test -- ok
17 commands (11 passed, 6 failed)
XFAIL test/nfs/nfsacl.test (exit status: 6)

XFAIL: test/nfs/nfs-dir
=======================

Use of uninitialized value within %ENV in substitution iterator at ./test/run line 106, <TEST_FILE> line 11.
Use of uninitialized value within %ENV in substitution iterator at ./test/run line 106, <TEST_FILE> line 12.
[10] $ umask 022 -- ok
[11] $ mkdir /test -- failed
mkdir: cannot create directory ‘/test’: Permission denied != ~
[12] $ echo blah > /test/blah -- failed
/gnu/store/v2jpdfl2f6rlz4r5lg6kyw0a11qqz7wk-bash-minimal-5.0.16/bin/sh: /test/blah: No such file or directory != ~
[16] $ su bin -- failed
su: Operation not permitted           != ~
[17] $ cat test/blah -- failed
cat: test/blah: No such file or directory != blah
Use of uninitialized value within %ENV in substitution iterator at ./test/run line 106, <TEST_FILE> line 23.
[22] $ su -- failed
su: Operation not permitted           != ~
Use of uninitialized value within %ENV in substitution iterator at ./test/run line 106, <TEST_FILE> line 24.
[23] $ chmod go-rwx /test -- failed
chmod: cannot access '/test': No such file or directory != ~
Use of uninitialized value within %ENV in substitution iterator at ./test/run line 106, <TEST_FILE> line 25.
[24] $ setfacl -m u:bin:rx /test -- failed
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
setfacl: /test: No such file or directory != ~
Use of uninitialized value within %ENV in substitution iterator at ./test/run line 106, <TEST_FILE> line 27.
[25] $ ls -dl /test | awk '{print $1, $3, $4}' -- failed
ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != drwxr-x---+ root root
ls: cannot access '/test': No such file or directory != ~
[27] $ getfacl --omit-header /test 2> /dev/null -- failed
~                                     != user::rwx
~                                     != user:bin:r-x
~                                     != group::---
~                                     != mask::r-x
~                                     != other::---
~                                     != 
[38] $ su bin -- failed
su: Operation not permitted           != ~
[39] $ cat test/blah -- failed
cat: test/blah: No such file or directory != blah
[41] $ sleep 3 -- ok
[42] $ cat test/blah -- failed
cat: test/blah: No such file or directory != blah
[44] $ cat test/blah -- failed
cat: test/blah: No such file or directory != blah
Use of uninitialized value within %ENV in substitution iterator at ./test/run line 106, <TEST_FILE> line 50.
[49] $ su -- failed
su: Operation not permitted           != ~
[50] $ rm -rf /test -- ok
17 commands (3 passed, 14 failed)
XFAIL test/nfs/nfs-dir.test (exit status: 14)


command "make" "check" "-j" "4" failed with status 2
note: keeping build directory `/tmp/guix-build-acl-2.2.53.drv-1'
builder for `/gnu/store/vychgc52186l842h3c9q0rxp1kfhfs0a-acl-2.2.53.drv' failed with exit code 1
build of /gnu/store/vychgc52186l842h3c9q0rxp1kfhfs0a-acl-2.2.53.drv failed
View build log at '/var/log/guix/drvs/vy/chgc52186l842h3c9q0rxp1kfhfs0a-acl-2.2.53.drv.gz'.
cannot build derivation `/gnu/store/f9h4awcml68fahfkx82qi6nspqln1ivp-coreutils-8.32.drv': 1 dependencies couldn't be built
cannot build derivation `/gnu/store/5yw5rb209l5ghkg2lxadv2lb10jk45xp-diffutils-3.7.drv': 1 dependencies couldn't be built
cannot build derivation `/gnu/store/vzccfsf5pvnv513lv6pc1ca0hwlh8i3b-diffutils-3.7.drv': 1 dependencies couldn't be built
guix build: error: build of `/gnu/store/vzccfsf5pvnv513lv6pc1ca0hwlh8i3b-diffutils-3.7.drv' failed

^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#43081: diffutils always referrers to the native coreutils
  2020-08-28 14:51   ` Mathieu Othacehe
@ 2020-08-31 12:00     ` Ludovic Courtès
  2020-08-31 12:38       ` Jan Nieuwenhuizen
  0 siblings, 1 reply; 5+ messages in thread
From: Ludovic Courtès @ 2020-08-31 12:00 UTC (permalink / raw)
  To: Mathieu Othacehe; +Cc: 43081

Hi,

Mathieu Othacehe <othacehe@gnu.org> skribis:

>> Do you know which acl is fixing (commencement.scm vs. acl.scm)?
>
> Yes it's the acl that is rooted in the bootstrap toolchain. Here's the
> full build log attached. I'm also cc-ing janneke which has some
> experience in that matter :).

Yes, now that you mention it, I remember janneke and I looking at a
similar LD_PRELOAD issue in Marrakesh last December.  :-)

> [24] $ setfacl -m u:bin:rx /test -- failed
> ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~

Does that ring a bell, janneke?

Ludo’.




^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#43081: diffutils always referrers to the native coreutils
  2020-08-31 12:00     ` Ludovic Courtès
@ 2020-08-31 12:38       ` Jan Nieuwenhuizen
  0 siblings, 0 replies; 5+ messages in thread
From: Jan Nieuwenhuizen @ 2020-08-31 12:38 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: Mathieu Othacehe, 43081

Ludovic Courtès writes:

> Hi,
>
> Mathieu Othacehe <othacehe@gnu.org> skribis:
>
>>> Do you know which acl is fixing (commencement.scm vs. acl.scm)?
>>
>> Yes it's the acl that is rooted in the bootstrap toolchain. Here's the
>> full build log attached. I'm also cc-ing janneke which has some
>> experience in that matter :).
>
> Yes, now that you mention it, I remember janneke and I looking at a
> similar LD_PRELOAD issue in Marrakesh last December.  :-)
>
>> [24] $ setfacl -m u:bin:rx /test -- failed
>> ERROR: ld.so: object '/tmp/guix-build-acl-2.2.53.drv-0/acl-2.2.53/.libs/libtestlookup.so' from LD_PRELOAD cannot be preloaded: ignored. != ~
>
> Does that ring a bell, janneke?

Oh my...I do remember we looked into this or something very similar.

Is it doable to run the test suite using the canonical PR again( maybe
setenv "PR_PROGRAM" just before the test phase or some substituting)?

Janneke

-- 
Jan Nieuwenhuizen <janneke@gnu.org> | GNU LilyPond http://lilypond.org
Freelance IT http://JoyofSource.com | Avatar® http://AvatarAcademy.com




^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2020-08-31 12:39 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-28  7:36 bug#43081: diffutils always referrers to the native coreutils Mathieu Othacehe
2020-08-28 14:27 ` Ludovic Courtès
2020-08-28 14:51   ` Mathieu Othacehe
2020-08-31 12:00     ` Ludovic Courtès
2020-08-31 12:38       ` Jan Nieuwenhuizen

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).