diff options
author | Christopher Baines <mail@cbaines.net> | 2023-05-07 09:28:55 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2023-05-07 12:16:51 +0100 |
commit | aad47b1b925262eb27ee1d4fcd19461deebb12e6 (patch) | |
tree | af049ad8c8f8cf0626eaf64ac0be042d3f555afa /gnu/packages/commencement.scm | |
parent | fccb48d2cec6bcf47647c82914f31e2dff617f9c (diff) |
Revert "gnu: gcc-11: Adapt patching for hurd to not use gexp's."
This reverts commit 08acdd0765b5f4fbfafa699a823ea7985d4d35a7.
This change is now unnecessary now that gcc-boot0 uses
gexps (a795a02a9d988be5a762886620f7bb6a95e7ffdb).
* gnu/packages/gcc.scm (gcc-11)[arguments]: Use gexp for modify-phases.
[native-inputs]: Remove.
* gnu/packages/commencement.scm (gcc-boot0)[native-inputs]: Remove.
Diffstat (limited to 'gnu/packages/commencement.scm')
-rw-r--r-- | gnu/packages/commencement.scm | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm index c4b50ec2c4..a6d3fcfce2 100644 --- a/gnu/packages/commencement.scm +++ b/gnu/packages/commencement.scm @@ -2453,10 +2453,7 @@ exec " gcc "/bin/" program ,@(alist-delete "libc" (%boot0-inputs)))) ;; No need for the native-inputs to build the documentation at this stage. - (native-inputs - (if (target-hurd?) - `(("hurd-patch" ,(search-patch "gcc-11-libstdc++-hurd-libpthread.patch"))) - '())))) + (native-inputs '()))) (define perl-boot0 (package |