# HG changeset patch # User Rob Landley # Date 1234862027 21600 # Node ID 7641e1038cb68bc7c31cbfa8f1a03904b135e633 # Parent 6f7f4d9011af70c7c12c18b741680ead94214a97 The new distcc is dumb enough to use -Werror by default. Make it stop. diff -r 6f7f4d9011af -r 7641e1038cb6 host-tools.sh --- a/host-tools.sh Mon Feb 16 15:32:29 2009 -0600 +++ b/host-tools.sh Tue Feb 17 03:13:47 2009 -0600 @@ -138,7 +138,7 @@ then echo build distcc setupfor distcc && - ./configure --with-included-popt && + ./configure --with-included-popt --disable-Werror && make -j "$CPUS" && cp distcc distccd "${HOSTTOOLS}" && cd ..