diff options
author | Zheng Junjie <z572@z572.online> | 2025-02-12 20:01:36 +0800 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-07-18 20:17:29 +0200 |
commit | 25d0c7f53381d33a1fdfc9b1d75c9b64fa41feb7 (patch) | |
tree | 1632c23d4ecac90499cbc9ce6ca09fbb045847a7 | |
parent | 5d9a084092af7c4f0cb70c2a9770fa2886c5adbe (diff) |
Revert "gnu: elfutils: Fix build to loongarch64."
This reverts commit 8f219ec01a7f9c118d039a77dc1119e6c27ebf5a.
-rw-r--r-- | gnu/packages/elf.scm | 17 |
1 files changed, 2 insertions, 15 deletions
diff --git a/gnu/packages/elf.scm b/gnu/packages/elf.scm index cf2b7c2d1d..6388629045 100644 --- a/gnu/packages/elf.scm +++ b/gnu/packages/elf.scm @@ -143,17 +143,6 @@ libraries.") (("run-strip-strmerge.sh") "") (("run-elflint-self.sh") ""))))) #~()) - #$@(if (target-loongarch64?) - `((add-after 'unpack 'update-config-scripts - (lambda* (#:key inputs native-inputs #:allow-other-keys) - ;; Replace outdated config.guess and config.sub. - (for-each (lambda (file) - (install-file - (search-input-file - (or native-inputs inputs) - (string-append "/bin/" file)) "./config")) - '("config.guess" "config.sub"))))) - '()) #$@(if (system-hurd?) #~((add-after 'unpack 'skip-tests (lambda _ @@ -176,10 +165,8 @@ libraries.") (("^#!.*" all) (string-append all "exit 77;\n")))))) #~())))) - (native-inputs (append (if (target-loongarch64?) - (list config) - (list)) - (list m4))) + + (native-inputs (list m4)) (inputs (list xz zlib)) (home-page "https://sourceware.org/elfutils/") (synopsis "Collection of utilities and libraries to handle ELF files and |