diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-04-28 21:39:13 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-04-28 21:41:20 +0200 |
commit | 7f9888516f783e07aa679332f4a58a4df2c2dba5 (patch) | |
tree | d4d35d0eef43677cd4a04614e944907322166de1 | |
parent | bbdd43fd11b6dc5a462422370f98a95dd3079397 (diff) | |
download | guix-7f9888516f783e07aa679332f4a58a4df2c2dba5.tar.gz |
gnu: ustr: Don't use vsnprintf.
This follows up on 1059d1570b7078e6a83e067577b42ed24ee25b55, which caused new tests failures on non-cross builds. * gnu/packages/textutils.scm (ustr)[arguments]: Return "0" for ./autoconf_vsnprintf.
-rw-r--r-- | gnu/packages/textutils.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/textutils.scm b/gnu/packages/textutils.scm index b04abbd13c..a51d689134 100644 --- a/gnu/packages/textutils.scm +++ b/gnu/packages/textutils.scm @@ -335,7 +335,7 @@ input bits thoroughly but are not suitable for cryptography.") (%current-system))) "echo 1" "echo 0")) - (("\\./autoconf_vsnprintf") "echo 1")))) + (("\\./autoconf_vsnprintf") "echo 0")))) (add-after 'unpack 'disable-check-for-stdint (lambda _ ;; Of course we have stdint.h, just not in /usr/include |