diff options
author | Kim Alvefur <zash@zash.se> | 2016-08-19 16:25:15 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-08-19 16:25:15 +0200 |
commit | 75ff5d1a054175bf5dc659ceb0c6bc3f6f1a2525 (patch) | |
tree | 07a8ffbf2ea590f8c1505312c167d758e55db569 /configure | |
parent | 9a012201cb1dcd7613649e1c9ad21546e7978cbe (diff) | |
download | prosody-75ff5d1a054175bf5dc659ceb0c6bc3f6f1a2525.tar.gz prosody-75ff5d1a054175bf5dc659ceb0c6bc3f6f1a2525.zip |
configure: Add --compiler-wrapper flag for using things like ccache or distcc
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -224,6 +224,10 @@ do --no-example-certs) EXCERTS= ;; + --compiler-wrapper=*) + CC="$value $CC" + LD="$value $LD" + ;; *) echo "Error: Unknown flag: $1" exit 1 |