From: ceriel Date: Fri, 3 Sep 1993 11:02:02 +0000 (+0000) Subject: Fix: Makefile used cc instead of $(UCC) X-Git-Tag: release-5-5~304 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=eaea6c1c59895317d2c95ca4c5bca2c173bb3a35;p=ack.git Fix: Makefile used cc instead of $(UCC) --- diff --git a/modules/src/malloc/proto.make b/modules/src/malloc/proto.make index 7f235d2dc..fc68e684b 100644 --- a/modules/src/malloc/proto.make +++ b/modules/src/malloc/proto.make @@ -42,8 +42,8 @@ gensize_type.h: getsize getsize > gensize_type.h getsize: $(SRC_DIR)/getsize.c - cc -o getsize $(SRC_DIR)/getsize.c -# use cc, not $(CC) as this must produce runnable binary. + $(UCC) -o getsize $(SRC_DIR)/getsize.c +# use $(UCC), not $(CC) as this must produce runnable binary. malloc.$(SUF): malloc.c $(CC) -c $(CFLAGS) malloc.c