diff options
author | Sören Tempel <soeren+git@soeren-tempel.net> | 2015-09-28 16:28:35 +0200 |
---|---|---|
committer | Sören Tempel <soeren+git@soeren-tempel.net> | 2015-09-28 16:34:11 +0200 |
commit | 8324d44234909ce817fb424f57391dfd99ab2310 (patch) | |
tree | b142c65ca6218e75874f821b1569b910fed0e782 /testing/docbook2x/01_fix_static_datadir_evaluation.patch | |
parent | 6dc8b5b425701a8a6cadd27065bba2a450e630db (diff) | |
download | aports-8324d44234909ce817fb424f57391dfd99ab2310.tar.bz2 aports-8324d44234909ce817fb424f57391dfd99ab2310.tar.xz |
testing/docbook2x: new aport
Diffstat (limited to 'testing/docbook2x/01_fix_static_datadir_evaluation.patch')
-rw-r--r-- | testing/docbook2x/01_fix_static_datadir_evaluation.patch | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/testing/docbook2x/01_fix_static_datadir_evaluation.patch b/testing/docbook2x/01_fix_static_datadir_evaluation.patch new file mode 100644 index 0000000000..5241dc30a7 --- /dev/null +++ b/testing/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="" |