make clean
This commit is contained in:
parent
c761ea62e6
commit
92af7a68a9
|
@ -293,9 +293,16 @@ function compile_toxcore {
|
||||||
fi
|
fi
|
||||||
cd $INSTALL_DIR/toxcore
|
cd $INSTALL_DIR/toxcore
|
||||||
SECONDS=0
|
SECONDS=0
|
||||||
|
if [ -f $INSTALL_DIR/configure_toxcore.txt ]; then
|
||||||
|
rm $INSTALL_DIR/configure_toxcore.txt
|
||||||
|
fi
|
||||||
|
if [ -f $INSTALL_DIR/make_toxcore.txt ]; then
|
||||||
|
rm $INSTALL_DIR/make_toxcore.txt
|
||||||
|
fi
|
||||||
autoreconf -i
|
autoreconf -i
|
||||||
./configure --enable-daemon --disable-av > $INSTALL_DIR/configure_toxcore.txt
|
./configure --enable-daemon --disable-av > $INSTALL_DIR/configure_toxcore.txt
|
||||||
make > $INSTALL_DIR/make_toxcore.txt
|
make clean
|
||||||
|
make -k > $INSTALL_DIR/make_toxcore.txt
|
||||||
if [ ! "$?" = "0" ]; then
|
if [ ! "$?" = "0" ]; then
|
||||||
duration=$SECONDS
|
duration=$SECONDS
|
||||||
echo $"Toxcore compile failed at $(($duration / 60)) minutes and $(($duration % 60)) seconds elapsed." >> $INSTALL_LOG
|
echo $"Toxcore compile failed at $(($duration / 60)) minutes and $(($duration % 60)) seconds elapsed." >> $INSTALL_LOG
|
||||||
|
@ -393,8 +400,12 @@ function compile_tox_client {
|
||||||
fi
|
fi
|
||||||
|
|
||||||
cd $INSTALL_DIR/toxic
|
cd $INSTALL_DIR/toxic
|
||||||
|
if [ -f $INSTALL_DIR/make_toxic.txt ]; then
|
||||||
|
rm $INSTALL_DIR/make_toxic.txt
|
||||||
|
fi
|
||||||
SECONDS=0
|
SECONDS=0
|
||||||
make > $INSTALL_DIR/make_toxic.txt
|
make clean
|
||||||
|
make -k > $INSTALL_DIR/make_toxic.txt
|
||||||
if [ ! -f $INSTALL_DIR/toxic/build/toxic ]; then
|
if [ ! -f $INSTALL_DIR/toxic/build/toxic ]; then
|
||||||
duration=$SECONDS
|
duration=$SECONDS
|
||||||
echo $"Toxic client compile failed at $(($duration / 60)) minutes and $(($duration % 60)) seconds elapsed." >> $INSTALL_LOG
|
echo $"Toxic client compile failed at $(($duration / 60)) minutes and $(($duration % 60)) seconds elapsed." >> $INSTALL_LOG
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue