mirror of
https://github.com/devkitPro/buildscripts.git
synced 2026-04-19 17:07:22 -05:00
corrected main script for linux
corrected newlib patch
This commit is contained in:
parent
60b7acfa5f
commit
90da8281c2
|
|
@ -77,12 +77,13 @@ then
|
|||
target=psp
|
||||
toolchain=DEVKITPSP
|
||||
|
||||
if test "`svn help`" ; then
|
||||
SVN="svn"
|
||||
else
|
||||
echo "ERROR: Please make sure you have 'subversion (svn)' installed."
|
||||
exit
|
||||
fi
|
||||
if test "`svn help`"
|
||||
then
|
||||
SVN="svn"
|
||||
else
|
||||
echo "ERROR: Please make sure you have 'subversion (svn)' installed."
|
||||
exit
|
||||
fi
|
||||
fi
|
||||
|
||||
|
||||
|
|
@ -103,14 +104,15 @@ do
|
|||
fi
|
||||
done
|
||||
|
||||
if [ "$DOWNLOAD" -eq 2]
|
||||
if [ "$DOWNLOAD" -eq 2 ]
|
||||
then
|
||||
if test "`wget -V`" ; then
|
||||
WGET=wget
|
||||
else
|
||||
echo "ERROR: Please make sure you have 'wget' installed."
|
||||
exit
|
||||
fi
|
||||
if test "`wget -V`"
|
||||
then
|
||||
WGET=wget
|
||||
else
|
||||
echo "ERROR: Please make sure you have 'wget' installed."
|
||||
exit
|
||||
fi
|
||||
fi
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -2649,7 +2649,7 @@ diff -Nbaur newlib-1.13.0/newlib/libc/include/stdio.h newlib-1.13.0-new/newlib/l
|
|||
int _EXFUN(vfiscanf, (FILE *, const char *, __VALIST));
|
||||
int _EXFUN(vfscanf, (FILE *, const char *, __VALIST));
|
||||
int _EXFUN(viscanf, (const char *, __VALIST));
|
||||
+int _EXFUN(viprintf, (const char *, ...));
|
||||
+int _EXFUN(viprintf, (const char *, __VALIST));
|
||||
int _EXFUN(vscanf, (const char *, __VALIST));
|
||||
int _EXFUN(vsiscanf, (const char *, const char *, __VALIST));
|
||||
int _EXFUN(vsscanf, (const char *, const char *, __VALIST));
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user