- reverse logic so that gcc3/4 is actually used when USE_GCC* is set

- set USE_GCC* to Yes by default when using a gcc* MODULE which makes
much more sense

discussed with and ok robert@
This commit is contained in:
ajacoutot 2008-10-28 12:26:39 +00:00
parent b3873bd71d
commit c78568ec50
2 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
USE_GCC3 ?= No
USE_GCC3 ?= Yes
.if ${USE_GCC3:L} == "no"
.if ${USE_GCC3:L} == "yes"
.include "${PORTSDIR}/lang/gcc/3.3/gcc3.port.mk"
.endif

View File

@ -1,5 +1,5 @@
USE_GCC4 ?= No
USE_GCC4 ?= Yes
.if ${USE_GCC4:L} == "no"
.if ${USE_GCC4:L} == "yes"
.include "${PORTSDIR}/lang/gcc/4.2/gcc4.port.mk"
.endif