aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog6
-rw-r--r--debian/control2
-rwxr-xr-xdebian/rules3
3 files changed, 10 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index a0c3f5997..dad09efed 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+u-boot-linaro (2010.09~rc1.1-0ubuntu5) natty; urgency=low
+
+ * Build with gcc-4.4 for now as 4.5 breaks u-boot for some reason.
+
+ -- Loïc Minier <loic.minier@linaro.org> Wed, 15 Dec 2010 22:54:03 +0100
+
u-boot-linaro (2010.09~rc1.1-0ubuntu4) natty; urgency=low
* Add Gumstix Overo, omap3_overo.
diff --git a/debian/control b/debian/control
index 08a5c24f2..fe29a4971 100644
--- a/debian/control
+++ b/debian/control
@@ -3,7 +3,7 @@ Section: misc
Priority: extra
Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
XSBC-Original-Maintainer: John Rigby <john.rigby@linaro.org>
-Build-Depends: debhelper (>= 7.0.50~)
+Build-Depends: debhelper (>= 7.0.50~), gcc-4.4
Standards-Version: 3.8.4
Vcs-Git: git://git.linaro.org/boot/u-boot-linaro-stable.git
diff --git a/debian/rules b/debian/rules
index be9f57293..fea4ddf43 100755
--- a/debian/rules
+++ b/debian/rules
@@ -13,6 +13,9 @@ ifneq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE))
export CROSS_COMPILE=$(DEB_HOST_GNU_TYPE)-
endif
+# u-boot breaks with gcc-4.5
+export CC=$(CROSS_COMPILE)gcc-4.4
+
%:
dh $@