From: Victor J. Orlikowski Date: Fri, 11 May 2001 19:44:42 +0000 (+0000) Subject: Small fix to make depend, although make depend doesn't seem to be used? X-Git-Tag: 2.0.18~37 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eae5b1f605864785bc214f34d56844ca33ba0b4e;p=thirdparty%2Fapache%2Fhttpd.git Small fix to make depend, although make depend doesn't seem to be used? (We seem to use APR's) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89090 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/build/rules.mk b/build/rules.mk index 367d2256ce4..905d7e4a260 100644 --- a/build/rules.mk +++ b/build/rules.mk @@ -223,7 +223,7 @@ distclean-p depend-p clean-p: depend: depend-recursive if test "`echo $(srcdir)/*.c`" != "$(srcdir)'/*.c'"; then \ - gcc -MM $(ALL_CPPFLAGS) $(ALL_INCLUDES) $(srcdir)/*.c | sed 's/\.o:/.lo:/' > $(builddir)/.deps || true; \ + $(CC) -MM $(ALL_CPPFLAGS) $(ALL_INCLUDES) $(srcdir)/*.c | sed 's/\.o:/.lo:/' > $(builddir)/.deps || true; \ fi # test "`echo *.c`" = '*.c' || perl $(top_srcdir)/build/mkdep.perl $(CPP) $(ALL_CPPFLAGS) $(ALL_INCLUDES) *.c > .deps