diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 2002-07-02 23:03:50 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 2002-07-02 23:03:50 +0000 |
commit | e80d40b536e182c90dd825c012b33511c7b4b5ee (patch) | |
tree | 172bc8b49450d12cf0473ea20414498781ac8234 | |
parent | Fix "gibberish" in the file (diff) |
Do not require Gcc 3.1 to compile -- or we have an infinate loop on RELENG_4.
Problem Reported by: Oliver Brandmueller <ob@e-Gitt.NET>
Notes
Notes:
svn path=/head/; revision=62366
-rw-r--r-- | lang/gcc31/Makefile | 2 | ||||
-rw-r--r-- | lang/gcc32/Makefile | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/lang/gcc31/Makefile b/lang/gcc31/Makefile index 0853b8174e78..e1f040464bfc 100644 --- a/lang/gcc31/Makefile +++ b/lang/gcc31/Makefile @@ -43,6 +43,8 @@ EXTRACT_ONLY= .endif PATCH_WRKSRC= ${SRCDIR} CONFIGURE_SCRIPT= ../${SRCDIR:C/${WRKDIR}//}/configure +# do not require Gcc 3.1 to compile -- or we have an infinate loop on RELENG_4. +USE_GCC= X .include <bsd.port.pre.mk> diff --git a/lang/gcc32/Makefile b/lang/gcc32/Makefile index 0853b8174e78..e1f040464bfc 100644 --- a/lang/gcc32/Makefile +++ b/lang/gcc32/Makefile @@ -43,6 +43,8 @@ EXTRACT_ONLY= .endif PATCH_WRKSRC= ${SRCDIR} CONFIGURE_SCRIPT= ../${SRCDIR:C/${WRKDIR}//}/configure +# do not require Gcc 3.1 to compile -- or we have an infinate loop on RELENG_4. +USE_GCC= X .include <bsd.port.pre.mk> |