1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
Description: Hard-code apreq2-config --prefix
apreq2-config will leak information about the build environment.
Hard-code what --prefix returns, so it's at least slightly more sane.
Author: Steinar H. Gunderson <sesse@debian.org>
Origin: vendor
Bug-Debian: http://bugs.debian.org/323108
Forwarded: not-needed
Last-Update: 2010-02-28
--- a/apreq2-config.in
+++ b/apreq2-config.in
@@ -22,7 +22,7 @@
PATH=/bin:/usr/bin:/usr/local/bin
-prefix="@prefix@"
+prefix="/usr"
exec_prefix="@exec_prefix@"
bindir="@bindir@"
libdir="@libdir@"
|