Message ID | 1405740191-12268-1-git-send-email-dev@codyps.com |
---|---|
State | Accepted |
Headers | show |
Cody, All, On 2014-07-18 23:23 -0400, Cody P Schafer spake thusly: > This is one I missed in the last patch (it was mixed with a different > local patch) > > Signed-off-by: Cody P Schafer <dev@codyps.com> Applied, thanks! Regards, Yann E. MORIN. > --- > scripts/build/cc/gcc.sh | 7 ++++--- > 1 file changed, 4 insertions(+), 3 deletions(-) > > diff --git a/scripts/build/cc/gcc.sh b/scripts/build/cc/gcc.sh > index 8a428a2..173ddbf 100644 > --- a/scripts/build/cc/gcc.sh > +++ b/scripts/build/cc/gcc.sh > @@ -829,9 +829,10 @@ do_cc_backend() { > extra_config+=("--with-system-zlib") > fi > > - if [ "${CT_MULTILIB}" = "y" ]; then > - extra_config+=("--enable-multilib") > - else > + > + # Some versions of gcc have a deffective --enable-multilib. > + # Since that's the default, only pass --disable-multilib. > + if [ "${CT_MULTILIB}" != "y" ]; then > extra_config+=("--disable-multilib") > fi > > -- > 2.0.2 > > > -- > For unsubscribe information see http://sourceware.org/lists.html#faq >
diff --git a/scripts/build/cc/gcc.sh b/scripts/build/cc/gcc.sh index 8a428a2..173ddbf 100644 --- a/scripts/build/cc/gcc.sh +++ b/scripts/build/cc/gcc.sh @@ -829,9 +829,10 @@ do_cc_backend() { extra_config+=("--with-system-zlib") fi - if [ "${CT_MULTILIB}" = "y" ]; then - extra_config+=("--enable-multilib") - else + + # Some versions of gcc have a deffective --enable-multilib. + # Since that's the default, only pass --disable-multilib. + if [ "${CT_MULTILIB}" != "y" ]; then extra_config+=("--disable-multilib") fi
This is one I missed in the last patch (it was mixed with a different local patch) Signed-off-by: Cody P Schafer <dev@codyps.com> --- scripts/build/cc/gcc.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-)