diff options
author | Hartmut Brandt <harti@FreeBSD.org> | 2005-05-24 13:19:40 +0000 |
---|---|---|
committer | Hartmut Brandt <harti@FreeBSD.org> | 2005-05-24 13:19:40 +0000 |
commit | da2f954c96284b824657b8fa5035258c832245eb (patch) | |
tree | 7493787569d0aabac9dbba1a77ce47563a66ff4d /usr.bin/make/Makefile.dist | |
parent | 51fb4c0273c5ab3b77604d2e0be6de76b735886f (diff) |
Use the name of the default shell instead of a numeric index to select
the default shell.
Idea from: DragonFlyBSD
Notes
Notes:
svn path=/head/; revision=146571
Diffstat (limited to 'usr.bin/make/Makefile.dist')
-rw-r--r-- | usr.bin/make/Makefile.dist | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/make/Makefile.dist b/usr.bin/make/Makefile.dist index 3432e389268d..0a485e1db01f 100644 --- a/usr.bin/make/Makefile.dist +++ b/usr.bin/make/Makefile.dist @@ -2,6 +2,6 @@ # a very simple makefile... pmake: @echo 'make started.' - cc -DDEFSHELL=1 -I. -c *.c + cc -DDEFSHELLNAME=\"sh\" -I. -c *.c cc *.o -o pmake @echo 'make completed.' |