From e829cbf2621f756f236297d80f226c9b72f6c60a Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Thu, 1 Mar 2001 06:26:32 +0000 Subject: [PATCH] Include -DDEFSHELL=1 in Makefile.dist so people boostrapping will have a sane default. Also add $FreeBSD$ while I'm here. Pointed out by: bde --- usr.bin/make/Makefile.dist | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/usr.bin/make/Makefile.dist b/usr.bin/make/Makefile.dist index c311d7e99035..76dde9edda69 100644 --- a/usr.bin/make/Makefile.dist +++ b/usr.bin/make/Makefile.dist @@ -1,7 +1,8 @@ +# $FreeBSD$ # a very simple makefile... pmake: @echo 'make started.' - cc -I. -c *.c + cc -DDEFSHELL=1 -I. -c *.c cd lst.lib; cc -I.. -c *.c cc *.o lst.lib/*.o -o pmake @echo 'make completed.'