mirror of
https://github.com/devkitPro/buildscripts.git
synced 2026-04-05 00:35:19 -05:00
*** empty log message ***
This commit is contained in:
parent
8992bda8dd
commit
034c72cb07
|
|
@ -289,31 +289,11 @@ rm -fr $INSTALLDIR/include/c++/$GCC_VER/$target/bits/stdc++.h.gch
|
|||
# Clean up temporary files and source directories
|
||||
#---------------------------------------------------------------------------------
|
||||
|
||||
echo
|
||||
echo "Would you like to delete temporary files? [Y/n]"
|
||||
read answer
|
||||
|
||||
if [ -z "$answer" -o "$answer" = "y" -o "$answer" = "Y" ]
|
||||
then
|
||||
echo "rm -fr "$builddir
|
||||
rm -fr $builddir
|
||||
fi
|
||||
|
||||
echo
|
||||
echo "Would you like to delete the source directories? [Y/n]"
|
||||
read answer
|
||||
|
||||
if [ -z "$answer" -o "$answer" = "y" -o "$answer" = "Y" ]
|
||||
then
|
||||
echo "rm -fr $BINUTILS_SRCDIR $GCC_SRCDIR $NEWLIB_SRCDIR $LIBOGC_SRCDIR"
|
||||
rm -fr $BINUTILS_SRCDIR $GCC_SRCDIR $NEWLIB_SRCDIR $LIBOGC_SRCDIR
|
||||
fi
|
||||
|
||||
echo
|
||||
echo "Would you like to delete the source packages? [y/N]"
|
||||
read answer
|
||||
|
||||
if [ ! -z "$answer" -o "$answer" = "y" -o "$answer" = "Y" ]
|
||||
if [ "$answer" = "y" -o "$answer" = "Y" ]
|
||||
then
|
||||
echo "rm -f $BINUTILS $GCC_CORE $GCC_GPP $NEWLIB"
|
||||
rm -f $SRCDIR/$BINUTILS $SRCDIR/$GCC_CORE $SRCDIR/$GCC_GPP $SRCDIR/$NEWLIB
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user