mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
a373462233
* gnu/packages/docbook.scm (docbook2x)[source]: Import patches from debian. Prefer patching in source over 'patch-sources phase. Drop docbook-xml workaround. [arguments]<#:phases>: Drop 'patch-sources. [inputs]: Move after arguments. Remove docbook-xml-4.5. [natine-inputs]: Add autoconf, automake and libtool. * gnu/packages/patches/docbook2x-filename-handling.patch: New file. * gnu/packages/patches/docbook2x-fix-synopsis.patch: Ditto. * gnu/packages/patches/docbook2x-manpage-typo.patch: Ditto. * gnu/packages/patches/docbook2x-preprocessor-declaration.patch: Ditto. * gnu/packages/patches/docbook2x-static-datadir-evaluation.patch: Ditto. * gnu/local.mk: Register it. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
21 lines
821 B
Diff
21 lines
821 B
Diff
# Source: <https://sources.debian.org/patches/docbook2x/0.8.8-18/01_fix_static_datadir_evaluation.patch/>
|
|
|
|
Description:
|
|
01_fix_static_datadir_evaluation.dpatch by Daniel Leidert (dale) <daniel.leidert@wgdd.de>
|
|
All lines beginning with `## DP:' are a description of the patch.
|
|
The evaluation of datadir results in "${prefix}/share" without
|
|
evaluation of the ${prefix} variable with autoconf 2.60.
|
|
|
|
Index: docbook2X-0.8.8/configure.ac
|
|
===================================================================
|
|
--- docbook2X-0.8.8.orig/configure.ac
|
|
+++ docbook2X-0.8.8/configure.ac
|
|
@@ -148,7 +148,7 @@
|
|
dnl they will reside and should use these static_* values.
|
|
dnl Ensure that all static_* are fully expanded.
|
|
|
|
-eval static_datadir="$datadir"
|
|
+eval eval static_datadir="$datadir"
|
|
|
|
eval static_bindir="$bindir"
|
|
old_val=""
|