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 | 8370703ece4eef92aa1b96cc39f4886ae2af01ac (patch) | |
tree | 07a8ffbf2ea590f8c1505312c167d758e55db569 /configure | |
parent | 74635e9edbd1426ff7feff4713d69d8e90b0d1ea (diff) | |
download | prosody-8370703ece4eef92aa1b96cc39f4886ae2af01ac.tar.gz prosody-8370703ece4eef92aa1b96cc39f4886ae2af01ac.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 |