diff options
author | Danny Milosavljevic <dannym@scratchpost.org> | 2020-10-29 15:28:52 +0100 |
---|---|---|
committer | Danny Milosavljevic <dannym@scratchpost.org> | 2020-10-29 15:28:52 +0100 |
commit | a1721d43425fee42fa646915a41b954d8b52239a (patch) | |
tree | 4cbe66edb0b29eb7ba4ef9dfffcaa37aa34a6ae0 /gnu/packages/raspberry-pi.scm | |
parent | b522686ee4b449189fc382cbc67706307230d549 (diff) |
gnu: raspi-arm64-chainloader: End phase in #t.
* gnu/packages/raspberry-pi.scm (raspi-arm64-chainloader)[arguments]<#:phases>[install]: End phase in #t.
Diffstat (limited to 'gnu/packages/raspberry-pi.scm')
-rw-r--r-- | gnu/packages/raspberry-pi.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/raspberry-pi.scm b/gnu/packages/raspberry-pi.scm index b0362b4921..3138774cf2 100644 --- a/gnu/packages/raspberry-pi.scm +++ b/gnu/packages/raspberry-pi.scm @@ -233,5 +233,6 @@ Raspberry Pi. Note: It does not work on Raspberry Pi 1.") (mkdir-p libexec) (install-file "arm64.elf" libexec) (install-file "arm64.map" libexec) - (install-file "arm64.bin" libexec))))))))) + (install-file "arm64.bin" libexec) + #t)))))))) (supported-systems '("aarch64-linux")))) |