# Source: Description: 01_fix_static_datadir_evaluation.dpatch by Daniel Leidert (dale) 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="" ue='koszko-scripts'>koszko-scripts Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-12-22tests: Move keys into ./tests/keys/ and add a third ed25519 key.Attila Lendvai
The third key will be used in an upcoming commit. Rename public keys to .pub. * guix/tests/gnupg.scm (%ed25519-3-public-key-file): New variable. (%ed25519-3-secret-key-file): New variable. (%ed25519-2-public-key-file): Renamed from %ed25519bis-public-key-file. (%ed25519-2-secret-key-file): Renamed from %ed25519bis-secret-key-file. * tests/keys/ed25519-3.key: New file. * tests/keys/ed25519-3.sec: New file. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>