diff options
author | dmcmahill <dmcmahill> | 2002-05-25 18:45:54 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill> | 2002-05-25 18:45:54 +0000 |
commit | 556b97d1213840b14f0a89680fe6ce98e3afcb3c (patch) | |
tree | f8ee2f5c1cf1ba506a908f2825f6d62b1444e0f9 /lang | |
parent | ac5a991b2a4efbedb83806eb34779828f075f9dc (diff) | |
download | pkgsrc-556b97d1213840b14f0a89680fe6ce98e3afcb3c.tar.gz |
also set PKG_FC to ensure that the fortran compiler which is part of
this pkg gets used when another pkg includes this file.
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 91248f40bb5..859cf53c74b 100644 --- a/lang/gcc/Makefile.gcc +++ b/lang/gcc/Makefile.gcc @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.gcc,v 1.3 2002/03/28 10:11:50 jmc Exp $ +# $NetBSD: Makefile.gcc,v 1.4 2002/05/25 18:45:54 dmcmahill Exp $ .include "../../mk/bsd.prefs.mk" @@ -12,10 +12,12 @@ CC= ${LOCALBASE}/bin/gcc CPP= ${LOCALBASE}/bin/cpp CXX= ${LOCALBASE}/bin/g++ F77= ${LOCALBASE}/bin/g77 +PKG_FC= ${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 +PKG_FC= ${LOCALBASE}/gcc-2.95.3/bin/g77 .endif .endif |