[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 1/2] build-system/gnu: Set the docdir to "share/doc"
From: |
John Darrington |
Subject: |
[PATCH 1/2] build-system/gnu: Set the docdir to "share/doc" |
Date: |
Mon, 10 Feb 2014 21:35:30 +0100 |
* guix/build/gnu-build-system.scm (configure):
Change docdir directory from "doc" to "share/doc".
---
guix/build/gnu-build-system.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/guix/build/gnu-build-system.scm b/guix/build/gnu-build-system.scm
index 65c9fcd..56e0450 100644
--- a/guix/build/gnu-build-system.scm
+++ b/guix/build/gnu-build-system.scm
@@ -160,7 +160,7 @@ makefiles."
'())
,@(if docdir
(list (string-append "--docdir=" docdir
- "/doc/" (package-name)))
+ "/share/doc/"
(package-name)))
'())
,@(if target ; cross building
(list (string-append "--host=" target))
--
1.7.10.4
- [PATCH 1/2] build-system/gnu: Set the docdir to "share/doc",
John Darrington <=