diff options
author | Liliana Marie Prikler <[email protected]> | 2023-12-18 03:58:23 +0100 |
---|---|---|
committer | Liliana Marie Prikler <[email protected]> | 2023-12-18 03:58:23 +0100 |
commit | 256d5b3598fa2162e9712fc98781d2cb4ceda31e (patch) | |
tree | 0e7f7051a59aad879561b5c4ee885e24d3c04bc6 /gnu/ci.scm | |
parent | 9f6210cc5c114310a38ad1cc0ff5900409a7e7cc (diff) | |
parent | 1a9f267f51f97b8ca7049aa72763ddd64aad5b62 (diff) |
Merge branch 'master' into wip-webkit
Diffstat (limited to 'gnu/ci.scm')
-rw-r--r-- | gnu/ci.scm | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/gnu/ci.scm b/gnu/ci.scm index 279dd4d910..38dc4d1d5c 100644 --- a/gnu/ci.scm +++ b/gnu/ci.scm @@ -190,15 +190,16 @@ SYSTEM." (define (pointless? target) ;; Return #t if it makes no sense to cross-build to TARGET from SYSTEM. - (match system - ((or "x86_64-linux" "i686-linux") - (if (string-contains target "mingw") - (not (string=? "x86_64-linux" system)) - #f)) - (_ - ;; Don't try to cross-compile from non-Intel platforms: this isn't - ;; very useful and these are often brittle configurations. - #t))) + (or (string=? target "avr") ; Nothing for AVR at this time. + (match system + ((or "x86_64-linux" "i686-linux") + (if (string-contains target "mingw") + (not (string=? "x86_64-linux" system)) + #f)) + (_ + ;; Don't try to cross-compile from non-Intel platforms: this isn't + ;; very useful and these are often brittle configurations. + #t)))) (define (either proc1 proc2 proc3) (lambda (x) |