Navigation Menu

Skip to content

Commit

Permalink
Fix buildworld with NO_GCC41.
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Sascha Wildner committed Sep 30, 2012
1 parent f3d922a commit 97cc174
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions gnu/usr.bin/Makefile
Expand Up @@ -18,12 +18,12 @@ SUBDIR+= ${BU_BACKUP}
.endif .endif


.if !defined(NO_GCC41) .if !defined(NO_GCC41)
SUBDIR+= gmp mpfr cc41 SUBDIR+= cc41
.ORDER: ${BU_PRIMARY} gmp mpfr cc41 .ORDER: ${BU_PRIMARY} cc41
.endif .endif


SUBDIR+= cc44 SUBDIR+= gmp mpfr cc44
.ORDER: ${BU_PRIMARY} cc44 .ORDER: ${BU_PRIMARY} gmp mpfr cc44


# maximum parallelism # maximum parallelism
# #
Expand Down

0 comments on commit 97cc174

Please sign in to comment.