diff options
author | Leonardo Arena <rnalrd@alpinelinux.org> | 2016-05-11 13:41:37 +0000 |
---|---|---|
committer | Leonardo Arena <rnalrd@alpinelinux.org> | 2016-05-11 13:41:37 +0000 |
commit | 750af00abb5efcca217593cd6a3d04ebbc07ade2 (patch) | |
tree | 007f2de1afd5c9f0ce3e080dc16e78b2603c80ea /main/docbook2x/01_fix_static_datadir_evaluation.patch | |
parent | 7b3e70f7dceb79e2cec39840f7195e3b2bdd40de (diff) | |
download | aports-750af00abb5efcca217593cd6a3d04ebbc07ade2.tar.bz2 aports-750af00abb5efcca217593cd6a3d04ebbc07ade2.tar.xz |
main/docbook2x: move to main
Diffstat (limited to 'main/docbook2x/01_fix_static_datadir_evaluation.patch')
-rw-r--r-- | main/docbook2x/01_fix_static_datadir_evaluation.patch | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/main/docbook2x/01_fix_static_datadir_evaluation.patch b/main/docbook2x/01_fix_static_datadir_evaluation.patch new file mode 100644 index 0000000000..5241dc30a7 --- /dev/null +++ b/main/docbook2x/01_fix_static_datadir_evaluation.patch @@ -0,0 +1,19 @@ +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="" |