GNU bug report logs -
#49025
[PATCH core-updates 00/37] Support cross-compilation with meson
Previous Next
Reported by: Maxime Devos <maximedevos <at> telenet.be>
Date: Mon, 14 Jun 2021 15:23:01 UTC
Severity: normal
Tags: patch
Done: Mathieu Othacehe <othacehe <at> gnu.org>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
This allows using #$(this-package-input ...) later.
* gnu/packages/tcl.scm (tk)[arguments]<#:configure-flags>: Make
this a G-expression instead of an S-expression.
---
gnu/packages/tcl.scm | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/tcl.scm b/gnu/packages/tcl.scm
index 5fccfa5da9..c87a8187f2 100644
--- a/gnu/packages/tcl.scm
+++ b/gnu/packages/tcl.scm
@@ -230,15 +230,16 @@ X11 GUIs.")
"/lib -lfontconfig")))))))
#:configure-flags
+ ,#~
(list (string-append "--with-tcl="
(assoc-ref %build-inputs "tcl")
"/lib")
;; This is needed when cross-compiling, see:
;; https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=719247
- ,@(if (%current-target-system)
- '("tcl_cv_strtod_buggy=1"
- "ac_cv_func_strtod=yes")
- '()))
+ #$@(if (%current-target-system)
+ #~("tcl_cv_strtod_buggy=1"
+ "ac_cv_func_strtod=yes")
+ #~()))
;; The tests require a running X server, so we just skip them.
#:tests? #f))
--
2.32.0
This bug report was last modified 4 years ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.