diff options
author | Mark H Weaver <mhw@netris.org> | 2018-06-25 18:27:20 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2018-06-26 14:58:08 -0400 |
commit | 9f0afbae11ec5d2dcfbe46247432251e1c57e444 (patch) | |
tree | b46ba14887c060f385a385060566a8929c1321cd /gnu | |
parent | 3466537b5313d998f44454cc513eeb5a252f21b3 (diff) | |
download | patches-9f0afbae11ec5d2dcfbe46247432251e1c57e444.tar patches-9f0afbae11ec5d2dcfbe46247432251e1c57e444.tar.gz |
gnu: guile-json: Return #t from snippet.
* gnu/packages/guile.scm (guile-json)[source]: Return #t from snippet.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/guile.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm index eea7e0f79a..99d4116947 100644 --- a/gnu/packages/guile.scm +++ b/gnu/packages/guile.scm @@ -835,7 +835,8 @@ for Guile\".") "AC_SUBST([GUILE_EFFECTIVE_VERSION])\n"))) (substitute* '("Makefile.am" "json/Makefile.am") (("moddir[[:blank:]]*=.*/share/guile/site" all) - (string-append all "/@GUILE_EFFECTIVE_VERSION@"))))))) + (string-append all "/@GUILE_EFFECTIVE_VERSION@"))) + #t)))) (build-system gnu-build-system) (native-inputs `(("autoconf" ,autoconf) ("automake" ,automake) |