diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-05-21 15:47:48 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-05-22 00:09:42 +0200 |
commit | e7313ae2936dfc0b3627d06b79d24fba5c04e406 (patch) | |
tree | 798ecfee851663ab68d0aeb964d4963fd23ed67d /gnu/packages/gcc.scm | |
parent | 798591b6ee464b95e42a1624a611c679bbe6f7e2 (diff) | |
download | guix-e7313ae2936dfc0b3627d06b79d24fba5c04e406.tar.gz |
gnu: libstdc++-doc: Add version 9.x.
* gnu/packages/gcc.scm (libstdc++-doc-4.9): Remove. (libstdc++-doc-9): New variable.
Diffstat (limited to 'gnu/packages/gcc.scm')
-rw-r--r-- | gnu/packages/gcc.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/gcc.scm b/gnu/packages/gcc.scm index 3edbf92576..c8e993c329 100644 --- a/gnu/packages/gcc.scm +++ b/gnu/packages/gcc.scm @@ -851,12 +851,12 @@ as the 'native-search-paths' field." "doc-install-man"))))))) (properties (alist-delete 'hidden? (package-properties gcc))))) -(define-public libstdc++-doc-4.9 - (make-libstdc++-doc gcc-4.9)) - (define-public libstdc++-doc-5 (make-libstdc++-doc gcc-5)) +(define-public libstdc++-doc-9 + (make-libstdc++-doc gcc-9)) + (define-public isl (package (name "isl") |