diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-12-10 11:02:09 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-12-10 11:02:09 +0100 |
commit | 135065853f0b35431a6e7b6b1cf63608863fea9b (patch) | |
tree | 988470dfbc27e2b5ba295166f30e028512b17757 /gnu/packages/texinfo.scm | |
parent | 6a4db3f3612d0c0b0b425d01ff5b311f9b485f8c (diff) | |
download | guix-135065853f0b35431a6e7b6b1cf63608863fea9b.tar guix-135065853f0b35431a6e7b6b1cf63608863fea9b.tar.gz |
gnu: texinfo: Remove unneeded dependency on xz.
The impetus for this is that XZ 5.2.2 requires pthreads. However, when
using the bootstrap GCC, using '-pthread' doesn't work because it tries
to refer to /nix/store/eeeeee-glibc-2.18. XZ eventually fails to build
with undefined references to pthread symbols.
* gnu/packages/texinfo.scm (texinfo)[inputs]: Remove XZ, which was
unneeded.
Diffstat (limited to 'gnu/packages/texinfo.scm')
-rw-r--r-- | gnu/packages/texinfo.scm | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gnu/packages/texinfo.scm b/gnu/packages/texinfo.scm index 591fb1f298..cc53293221 100644 --- a/gnu/packages/texinfo.scm +++ b/gnu/packages/texinfo.scm @@ -43,7 +43,6 @@ (build-system gnu-build-system) (native-inputs `(("procps" ,procps))) ;one of the tests needs pgrep (inputs `(("ncurses" ,ncurses) - ("xz" ,xz) ("perl" ,perl))) (native-search-paths |