From d10cf0df6074c7b1588ecfb74ec3b0fca3628412 Mon Sep 17 00:00:00 2001 From: Arne Fitzenreiter Date: Sat, 24 Sep 2011 13:51:31 +0000 Subject: [PATCH] glibc: fix toolchain build on arm. --- lfs/glibc | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/lfs/glibc b/lfs/glibc index f8d4260c5..11952a605 100644 --- a/lfs/glibc +++ b/lfs/glibc @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007 Michael Tremer & Christian Schmidt # +# Copyright (C) 2007-2011 IPFire Team # # # # This program is free software: you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # @@ -55,14 +55,12 @@ else EXTRA_INSTALL = endif +EXTRA_CONFIG += --build=$(BUILDTARGET) + ifeq "$(MACHINE_TYPE)" "arm" # Disable hardware FP for ARM. EXTRA_CONFIG += \ - --build=arm \ - --host=$(BUILDTARGET) \ --without-fp -else - EXTRA_CONFIG += --build=$(BUILDTARGET) endif ###############################################################################