From: Sascha Wildner Date: Sun, 30 Sep 2012 14:35:39 +0000 (+0200) Subject: Fix buildworld with NO_GCC41. X-Git-Tag: v3.2.0~51 X-Git-Url: https://gitweb.dragonflybsd.org/~nant/dragonfly.git/commitdiff_plain/97cc174386dc0632368d2cb741081a8b896c123f Fix buildworld with NO_GCC41. The Makefile logic was kinda broken and gmp/mpfr were built only when gcc41 was being built (i.e., when NO_GCC41 was not specified). Instead, just build them in any case. --- diff --git a/gnu/usr.bin/Makefile b/gnu/usr.bin/Makefile index 0152d1977d..9d5d59ba4a 100644 --- a/gnu/usr.bin/Makefile +++ b/gnu/usr.bin/Makefile @@ -18,12 +18,12 @@ SUBDIR+= ${BU_BACKUP} .endif .if !defined(NO_GCC41) -SUBDIR+= gmp mpfr cc41 -.ORDER: ${BU_PRIMARY} gmp mpfr cc41 +SUBDIR+= cc41 +.ORDER: ${BU_PRIMARY} cc41 .endif -SUBDIR+= cc44 -.ORDER: ${BU_PRIMARY} cc44 +SUBDIR+= gmp mpfr cc44 +.ORDER: ${BU_PRIMARY} gmp mpfr cc44 # maximum parallelism #