diff options
author | Hans-Christoph Steiner <hans@eds.org> | 2019-10-29 21:13:56 +0100 |
---|---|---|
committer | teor <teor@torproject.org> | 2019-11-05 15:45:25 +1000 |
commit | 2a349006b9c1feba0a29ede4838cf8f5fdc0b2e5 (patch) | |
tree | 25cd748faf95d3537ac44f19cecde362c7da1160 /changes | |
parent | 2395800d3e333ec4637ece4bee0a0a1af81c0cbc (diff) | |
download | tor-2a349006b9c1feba0a29ede4838cf8f5fdc0b2e5.tar.gz tor-2a349006b9c1feba0a29ede4838cf8f5fdc0b2e5.zip |
force pkg-config to only use --prefix when cross-compiling
The current pkg-config setup has no sense of whether it is cross-compiling,
so it will detect things on the build system that are not present or are
wrong for the host system. This forces the cross-compiling build to only
look for pkg-config .pc files in --prefix.
A version of this has been the setup for many years with the Android builds.
Fixes #32191
Signed-off-by: Hans-Christoph Steiner <hans@eds.org>
Diffstat (limited to 'changes')
-rw-r--r-- | changes/ticket32191 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/changes/ticket32191 b/changes/ticket32191 new file mode 100644 index 0000000000..65e919fe03 --- /dev/null +++ b/changes/ticket32191 @@ -0,0 +1,3 @@ + o Minor features (build system): + - force pkg-config to only use --prefix when cross-compiling. + Closes ticket 32191. |