libfp: use ${CC} instead of cc, reported by Antoine Leca.
This commit is contained in:
parent
fe343bb002
commit
6c2c2f3c34
1 changed files with 2 additions and 2 deletions
|
@ -6,9 +6,9 @@
|
|||
.fc.o:
|
||||
${_MKTARGET_COMPILE}
|
||||
cp ${.IMPSRC} tmp.c
|
||||
cc -I${.CURDIR} ${CFLAGS} -S tmp.c
|
||||
${CC} -I${.CURDIR} ${CFLAGS} -S tmp.c
|
||||
sed -f ${.CURDIR}/FP.script tmp.s > ${.PREFIX}.s
|
||||
cc -I${.CURDIR} -c -o ${.TARGET} ${.PREFIX}.s
|
||||
${CC} -I${.CURDIR} -c -o ${.TARGET} ${.PREFIX}.s
|
||||
rm -f tmp.c tmp.s ${PREFIX}.s
|
||||
|
||||
LIB= fp
|
||||
|
|
Loading…
Reference in a new issue