diff options
author | Mark H Weaver <mhw@netris.org> | 2015-01-10 19:14:29 -0500 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2015-01-10 19:19:34 -0500 |
commit | 62c155c0bcbc0d71b1bc35e966193b6e8de03246 (patch) | |
tree | b7f0f4fd67ead44a068102f83d21d19555699299 | |
parent | b2363f65517dd30b9766c9714c42dc06fd8b438a (diff) | |
download | guix-62c155c0bcbc0d71b1bc35e966193b6e8de03246.tar guix-62c155c0bcbc0d71b1bc35e966193b6e8de03246.tar.gz |
gnu: libtool: Add m4 to propagated-inputs.
* gnu/packages/autotools.scm (libtool)[propagated-inputs]: Add m4.
-rw-r--r-- | gnu/packages/autotools.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/packages/autotools.scm b/gnu/packages/autotools.scm index 07fdde73ea..8e72562444 100644 --- a/gnu/packages/autotools.scm +++ b/gnu/packages/autotools.scm @@ -249,6 +249,7 @@ Makefile, simplifying the entire process for the developer.") (patches (list (search-patch "libtool-skip-tests.patch"))))) (build-system gnu-build-system) + (propagated-inputs `(("m4" ,m4))) (native-inputs `(("m4" ,m4) ("perl" ,perl) ("automake" ,automake) ;some tests rely on 'aclocal' |