From 82561cf391dd0dc9f8a761402bc79bee0780e7f1 Mon Sep 17 00:00:00 2001 From: tv Date: Tue, 18 Aug 1998 19:12:42 +0000 Subject: [PATCH] Kill spaces in the $$files check introduced by borrowing the C++ rule for ObjC. --- share/mk/bsd.dep.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/share/mk/bsd.dep.mk b/share/mk/bsd.dep.mk index 41701d285302..d841588de1f9 100644 --- a/share/mk/bsd.dep.mk +++ b/share/mk/bsd.dep.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.dep.mk,v 1.22 1998/08/18 17:31:21 tv Exp $ +# $NetBSD: bsd.dep.mk,v 1.23 1998/08/18 19:12:42 tv Exp $ .PHONY: cleandepend cleandir distclean: cleandepend @@ -27,7 +27,7 @@ depend: .depend ${CFLAGS:M-[ID]*} ${CPPFLAGS} $$files; \ fi @files="${.ALLSRC:M*.m}"; \ - if [ "$$files" != " " ]; then \ + if [ "$$files" != "" ]; then \ echo ${MKDEP} -a ${MKDEPFLAGS} \ ${OBJCFLAGS:M-[ID]*} ${CPPFLAGS} $$files; \ ${MKDEP} -a ${MKDEPFLAGS} \