diff options
author | sam <sam@FreeBSD.org> | 2008-10-07 16:39:17 +0000 |
---|---|---|
committer | sam <sam@FreeBSD.org> | 2008-10-07 16:39:17 +0000 |
commit | 49731446d840d8072e517f5cc5e77c85c53c79ae (patch) | |
tree | 36834c46163683c6deceb924c790e7c8ed673864 | |
parent | 914c87276bf61ea7ce78ea87b0cd6e42c378e313 (diff) | |
download | FreeBSD-src-49731446d840d8072e517f5cc5e77c85c53c79ae.zip FreeBSD-src-49731446d840d8072e517f5cc5e77c85c53c79ae.tar.gz |
don't hardcode cc
Submitted by: Andrey Eltsov
-rw-r--r-- | sys/boot/arm/ixp425/boot2/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/boot/arm/ixp425/boot2/Makefile b/sys/boot/arm/ixp425/boot2/Makefile index 94479434..138446b 100644 --- a/sys/boot/arm/ixp425/boot2/Makefile +++ b/sys/boot/arm/ixp425/boot2/Makefile @@ -57,13 +57,13 @@ memmem.c: $S/../lib/libc/string/memmem.c CLEANFILES+=memchr.c memmem.c ashldi3.o: $S/libkern/ashldi3.c - cc -c ${CFLAGS} -D_KERNEL -o ${.TARGET} ${.IMPSRC} + ${CC} -c ${CFLAGS} -D_KERNEL -o ${.TARGET} ${.IMPSRC} divsi3.o: $S/libkern/${M}/divsi3.S - cc -c ${CFLAGS} -D_KERNEL -o ${.TARGET} ${.IMPSRC} + ${CC} -c ${CFLAGS} -D_KERNEL -o ${.TARGET} ${.IMPSRC} muldi3.o: $S/libkern/${M}/muldi3.c - cc -c ${CFLAGS} -D_KERNEL -o ${.TARGET} ${.IMPSRC} + ${CC} -c ${CFLAGS} -D_KERNEL -o ${.TARGET} ${.IMPSRC} inflate.c: $S/kern/inflate.c sed -e 's/extern void putstr (char/extern void putstr (const char/' < \ |