From fb327afa651ac95a743c4300b76ae9783ae572dd Mon Sep 17 00:00:00 2001 From: Ian Darwin Date: Tue, 30 Jun 1992 13:12:18 +0000 Subject: [PATCH] Add SHELL=/bin/sh, and change one cc to $(CC). --- src/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index 4c2bab31..74c7c0b0 100644 --- a/src/Makefile +++ b/src/Makefile @@ -22,6 +22,7 @@ # # 4. This notice may not be removed or altered. +SHELL = /bin/sh #MAGIC = /etc/magic MAGIC = /usr/local/lib/magic DEFS = -DMAGIC='"$(MAGIC)"' # -Dvoid=int @@ -78,7 +79,7 @@ try: all $(OFILE) what ./file >lastnocore file: $(OBJS) - cc $(CFLAGS) $(OBJS) -o $@ + $(CC) $(CFLAGS) $(OBJS) -o $@ lint: $(SRCS) lint -ha $(DEFS) $(SRCS) | tee $@ magic: Magdir -- 2.40.0