New commits:
commit 3e53b3605c6c8510c44147499b278a9cf2a15ac5
Author: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
Commit: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
gnu/FUNCTIONS: - default_build_configure_gcc: specified bug url, pass
CFLAGS, BOOT_CFLAGS, CXXFLAGS to configure
- default_build_make_gcc: use make_single
- default_build_install_gcc: LIBRARY is passed as a parameter now,
installing compiler1 is the spell's responsibility
diff --git a/ChangeLog b/ChangeLog
index e48822b..bbecf35 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2010-04-02 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
+ * gnu/FUNCTIONS:
+ - default_build_configure_gcc: specified bug url, pass
+ CFLAGS, BOOT_CFLAGS, CXXFLAGS to configure
+ - default_build_make_gcc: use make_single
+ - default_build_install_gcc: LIBRARY is passed as a parameter now,
+ installing compiler1 is the spell's responsibility
+
2010-04-02 Arwed v. Merkatz <v.merkatz AT gmx.net>
* gnome2-libs/libgdata: new spell, glib based GData protocol
implementation
diff --git a/gnu/FUNCTIONS b/gnu/FUNCTIONS
index eb720d1..2bd917b 100755
--- a/gnu/FUNCTIONS
+++ b/gnu/FUNCTIONS
@@ -50,18 +50,26 @@ function default_build_configure_gcc ()
# fixes seg-fault on libiberty/splay.c in v 4.3.2
CFLAGS="-O1 $CFLAGS" &&
+ OPTS="--build=$HOST $OPTS" &&
if [[ $CROSS_INSTALL == on ]]; then
OPTS="--host=$HOST $OPTS" || return 1
- else
- OPTS="--build=$HOST $OPTS" || return 1
- fi &&
+ fi &&