Subject: NetBSD master CVS tree commits
To: None <source-changes@NetBSD.ORG>
From: None <source@NetBSD.ORG>
List: source-changes
Date: 12/29/1996 19:20:02
christos
Sun Dec 29 14:14:33 EST 1996
Update of /cvsroot/src/share/mk
In directory netbsd1:/var/slash-tmp/cvs-serv19065

Modified Files:
	bsd.lib.mk 
Log Message:
Don't use @echo "${command}" to echo commands, because if ${command} contains
double quotes we generate shell syntax errors. Use @echo ${command:Q} instead
which properly quotes shell metacharacters.