comparison host-tools.sh @ 624:7641e1038cb6

The new distcc is dumb enough to use -Werror by default. Make it stop.
author Rob Landley <rob@landley.net>
date Tue, 17 Feb 2009 03:13:47 -0600
parents 7523d1f3b818
children 065e1a0f6697
comparison
equal deleted inserted replaced
623:6f7f4d9011af 624:7641e1038cb6
136 # Build distcc (if it's not in $PATH) 136 # Build distcc (if it's not in $PATH)
137 if [ -z "$(which distccd)" ] 137 if [ -z "$(which distccd)" ]
138 then 138 then
139 echo build distcc 139 echo build distcc
140 setupfor distcc && 140 setupfor distcc &&
141 ./configure --with-included-popt && 141 ./configure --with-included-popt --disable-Werror &&
142 make -j "$CPUS" && 142 make -j "$CPUS" &&
143 cp distcc distccd "${HOSTTOOLS}" && 143 cp distcc distccd "${HOSTTOOLS}" &&
144 cd .. 144 cd ..
145 145
146 cleanup distcc 146 cleanup distcc