From bd90c7d462fcf426d77f4aceb3f64634b86e0596 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Sun, 19 Nov 2023 10:50:47 +0200 Subject: gnu: stfl: Fix cross-building. * gnu/packages/ncurses.scm (stfl)[arguments]: Add a make-flag to use the correct compiler when cross-compiling. Remove trailing #t from phases. Change-Id: I79aaf2472439b74e66e0e178f3d7f1bd2af62d7e --- gnu/packages/ncurses.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gnu/packages') diff --git a/gnu/packages/ncurses.scm b/gnu/packages/ncurses.scm index 3b2f9b15f9..c19fe6d990 100644 --- a/gnu/packages/ncurses.scm +++ b/gnu/packages/ncurses.scm @@ -330,8 +330,9 @@ (define-public stfl "1460d5lc780p3q38l3wc9jfr2a7zlyrcra0li65aynj738cam9yl")))) (build-system gnu-build-system) (arguments - '(#:tests? #f ; no test target - #:make-flags (list (string-append "prefix=" (assoc-ref %outputs "out"))) + `(#:tests? #f ; no test target + #:make-flags (list (string-append "prefix=" (assoc-ref %outputs "out")) + (string-append "CC=" ,(cc-for-target))) #:phases (modify-phases %standard-phases (delete 'configure) ; there is no configure script @@ -339,8 +340,7 @@ (define-public stfl (add-before 'build 'patch-ncursesw (lambda _ (substitute* "stfl_internals.h" - (("ncursesw/") "")) - #t)) + (("ncursesw/") "")))) (add-after 'install 'install-missing-symlink (lambda* (#:key outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) -- cgit v1.2.3