~ruther/guix-local

ref: 4b9b2595e41d683be25dee85a0c1230ff62ec344 guix-local/gnu/packages/patches/docbook2x-static-datadir-evaluation.patch -rw-r--r-- 821 bytes
4b9b2595 — jgart gnu: trealla: Update to 2.89.10. a month ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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=""