diff options
author | cjep <cjep@pkgsrc.org> | 2002-03-25 14:43:35 +0000 |
---|---|---|
committer | cjep <cjep@pkgsrc.org> | 2002-03-25 14:43:35 +0000 |
commit | cf0e9086ab81f78eff9359193ee592a23ff8b05d (patch) | |
tree | 9eac61d8d04eeadeda3480946945fb4024674ef3 /lang/gcc | |
parent | 9b43b2d9dc6a24846c77deb13d5cc33f51d47946 (diff) | |
download | pkgsrc-cf0e9086ab81f78eff9359193ee592a23ff8b05d.tar.gz |
Use the gcc-2.95.3 FORTRAN (after discussion with abs).
Diffstat (limited to 'lang/gcc')
-rw-r--r-- | lang/gcc/Makefile.gcc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lang/gcc/Makefile.gcc b/lang/gcc/Makefile.gcc index 1595560220e..478282beb8a 100644 --- a/lang/gcc/Makefile.gcc +++ b/lang/gcc/Makefile.gcc @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.gcc,v 1.1 2002/01/03 21:39:55 tron Exp $ +# $NetBSD: Makefile.gcc,v 1.2 2002/03/25 14:43:35 cjep Exp $ .include "../../mk/bsd.prefs.mk" @@ -8,8 +8,10 @@ BUILD_DEPENDS+= gcc>=2.95.3:../../lang/gcc CC= ${LOCALBASE}/bin/gcc CPP= ${LOCALBASE}/bin/cpp CXX= ${LOCALBASE}/bin/g++ +F77= ${LOCALBASE}/bin/g77 .else CC= ${LOCALBASE}/gcc-2.95.3/bin/cc CPP= ${LOCALBASE}/gcc-2.95.3/bin/cpp CXX= ${LOCALBASE}/gcc-2.95.3/bin/c++ +F77= ${LOCALBASE}/gcc-2.95.3/bin/g77 .endif |