diff options
author | Ludovic Courtès <ludo@gnu.org> | 2020-03-31 23:37:36 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-04-01 00:12:31 +0200 |
commit | b87d7002b7ef1184641b97fa601aa594a5d3af76 (patch) | |
tree | b8a92a3db1870f634c5b5006bd9230a79f68fbfb /gnu | |
parent | b3bd47569637702652c2e7da0ddee8e879b52d71 (diff) | |
download | patches-b87d7002b7ef1184641b97fa601aa594a5d3af76.tar patches-b87d7002b7ef1184641b97fa601aa594a5d3af76.tar.gz |
Revert "gnu: coreutils: Fix cross-compilation to i586-pc-gnu."
This reverts commit 67cbfeae30eb9b7c56145bf72582d71eea177370, which is
not longer necessary now that the 'ld.so' linker script of the cross
glibc contains "libhurduser.so libmachuser.so".
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/base.scm | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm index 4827f80488..a49ea25196 100644 --- a/gnu/packages/base.scm +++ b/gnu/packages/base.scm @@ -330,13 +330,6 @@ used to apply commands with arbitrarily long arguments.") (outputs '("out" "debug")) (arguments `(#:parallel-build? #f ; help2man may be called too early - - ;; 'cp' and others refer to 'file_chauthor' so they must link directly - ;; against libhurduser. - ,@(if (hurd-target?) - '(#:configure-flags '("LIBS=-lhurduser")) - '()) - #:phases (modify-phases %standard-phases (add-before 'build 'patch-shell-references (lambda _ |