me
/
guix
Archived
1
0
Fork 0

gnu: erlang: Remove 'autoconf phase.

* gnu/packages/erlang.scm (erlang)[native-inputs]: Remove autoconf,
automake.
[arguments]: Remove deprecated 'autoconf phase. Remove unneeded
'patch-configure-shell-script.
master
Efraim Flashner 2021-07-13 12:39:46 +03:00
parent 11c832a7f4
commit 956b6b078e
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 0 additions and 15 deletions

View File

@ -31,7 +31,6 @@
#:use-module (guix packages)
#:use-module (guix utils)
#:use-module (gnu packages)
#:use-module (gnu packages autotools)
#:use-module (gnu packages fontutils)
#:use-module (gnu packages gl)
#:use-module (gnu packages ncurses)
@ -59,8 +58,6 @@
(build-system gnu-build-system)
(native-inputs
`(("perl" ,perl)
("autoconf" ,autoconf)
("automake" ,automake)
;; Erlang's documentation is distributed in a separate tarball.
("erlang-manpages"
@ -178,18 +175,6 @@
(lambda _
(setenv "ERL_TOP" (getcwd))
#t))
(add-after 'patch-source-env 'autoconf
(lambda _
(invoke "./otp_build" "autoconf")
#t))
(add-after 'autoconf 'patch-configure-script-shell
(lambda _
(substitute* "configure"
(("cmd_str=\"./configure")
(string-append "cmd_str=\""
(which "sh")
" ./configure")))
#t))
(add-after 'install 'patch-erl
;; This only works after install.
(lambda* (#:key outputs #:allow-other-keys)