New commits:
commit e2a817e63d92efebfa7357f60953181af2bd87ff
Author: Andraž Levstik <ruskie+2054d253 AT codemages.net>
Commit: Andraž Levstik <ruskie+2054d253 AT codemages.net>
gcc: reformatting
diff --git a/gnu/gcc/BUILD b/gnu/gcc/BUILD
index fa5f317..0ece038 100755
--- a/gnu/gcc/BUILD
+++ b/gnu/gcc/BUILD
@@ -1,9 +1,9 @@
# install gcc libraries to /lib instead of /lib64
-sedit "s/lib64/lib/" gcc/config/i386/linux64.h &&
+sedit "s/lib64/lib/" gcc/config/i386/linux64.h &&
if [[ "$GCC_NOLIB64" == 'y' ]]; then
# tell gcc to target binaries to expect the linker in /lib instead of
/lib64
sedit "s/lib64/lib/" gcc/config/i386/t-linux64
-fi &&
+fi &&
if [[ "$ARCHITECTURE" == "pentium4" ||
"$ARCHITECTURE" == "pentium-m" ]]; then
@@ -12,7 +12,7 @@ if [[ "$ARCHITECTURE" == "pentium4" ||
fi &&
# fixes seg-fault on libiberty/splay.c in v 4.3.2
-CFLAGS="-O1 $CFLAGS"
+CFLAGS="-O1 $CFLAGS" &&
if [[ $CROSS_INSTALL == on ]]; then
OPTS="--host=$HOST $OPTS"
@@ -22,47 +22,50 @@ fi &&
# store CFLAGS and LDFLAGS persistently so they can be read by the other
# split spells later, see bug #10087
-GCC_CFLAGS="$CFLAGS" &&
-GCC_LDFLAGS="$LDFLAGS" &&
+GCC_CFLAGS="$CFLAGS" &&
+GCC_LDFLAGS="$LDFLAGS" &&
persistent_add GCC_CFLAGS GCC_LDFLAGS &&
# when updating this spell please check if this is still necessary:
if [[ $GCJ_AWT == y ]]; then
CFLAGS="$CFLAGS -I${INSTALL_ROOT}/usr/include/freetype2"
-fi &&
-if list_find "$GCC_COMPILER" "ada" ; then
-# setup bootstrap ada compiler
- ADA_PATH=${SOURCE13/.tar.bz2/} &&
- PATH=$SOURCE_DIRECTORY/$ADA_PATH/usr/bin:$PATH &&
+fi &&