gnu: ovmf: Fix build and add FIXME.

* gnu/packages/firmware.scm (ovmf): Replace 'invoke' with 'system*'. Add FIXME
about failing script.
master
Rutger Helling 2018-03-06 08:24:01 +01:00
parent 0f2778029a
commit cee03b267c
No known key found for this signature in database
GPG Key ID: F3A727DB44FCCA36
1 changed files with 3 additions and 1 deletions

View File

@ -258,7 +258,9 @@ coreboot.")
(setenv "WORKSPACE" cwd)
(setenv "EDK_TOOLS_PATH" tools)
(setenv "PATH" (string-append (getenv "PATH") ":" bin))
(invoke "bash" "edksetup.sh" "BaseTools")
; FIXME: The below script errors out. When using 'invoke' instead
; of 'system*' this causes the build to fail.
(system* "bash" "edksetup.sh" "BaseTools")
(substitute* "Conf/target.txt"
(("^TARGET[ ]*=.*$") "TARGET = RELEASE\n")
(("^TOOL_CHAIN_TAG[ ]*=.*$") "TOOL_CHAIN_TAG = GCC49\n")