diff options
author | cjep <cjep> | 2002-03-25 14:43:35 +0000 |
---|---|---|
committer | cjep <cjep> | 2002-03-25 14:43:35 +0000 |
commit | 62338be4ff42f34cff3f1ea9806717815ef47cd2 (patch) | |
tree | 9eac61d8d04eeadeda3480946945fb4024674ef3 /lang | |
parent | 5e491ab49fc2e83329ada11152918f5024be7ff7 (diff) | |
download | pkgsrc-62338be4ff42f34cff3f1ea9806717815ef47cd2.tar.gz |
Use the gcc-2.95.3 FORTRAN (after discussion with abs).
Diffstat (limited to 'lang')
-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 |