Subject: ${F77} vs. ${FC} vs. buildlink3
To: None <tech-pkg@netbsd.org>
From: Dan McMahill <dmcmahill@netbsd.org>
List: tech-pkg
Date: 03/08/2004 07:56:18
while trying to debug an issue with some buildlink spillover
in an installed file, I noticed the following:
PKG_FC and PKG_CC seem to agree on a path:
CHROOT bondage# make show-var PKG_STAGE=configure VARNAME=PKG_FC
/usr/pkgsrc-current/math/scilab/work.bondage/.gcc/bin/g77
CHROOT bondage# make show-var PKG_STAGE=configure VARNAME=PKG_CC
/usr/pkgsrc-current/math/scilab/work.bondage/.gcc/bin/gcc
as do FC and CC:
CHROOT bondage# make show-var PKG_STAGE=configure VARNAME=FC
g77
CHROOT bondage# make show-var PKG_STAGE=configure VARNAME=CC
gcc
but not F77:
CHROOT bondage# make show-var PKG_STAGE=configure VARNAME=F77
/usr/pkgsrc-current/math/scilab/work.bondage/.gcc/bin/g77
should the F77 def. be changed to just 'g77' (no path)?
-Dan
--