You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh
|
|
|
|
logfile="`pwd`/update.log"
|
|
echo preparing
|
|
pushd ..
|
|
./autogen.sh --without-openssl --without-gnutls --without-sasl --without-curl --without-expat --without-zlib --disable-dependency-tracking
|
|
make clean
|
|
make -j 4 > "$logfile" 2>&1
|
|
popd
|