From: Ken Raeburn Date: Wed, 2 Dec 2009 23:09:40 +0000 (+0000) Subject: Check ALL_DEP_SRCS, not SRCS, to decide what to put into the deps file X-Git-Tag: krb5-1.8-alpha1~101 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=bb1a6534caa1c18f79c706a154862f91f3e61224;p=krb5.git Check ALL_DEP_SRCS, not SRCS, to decide what to put into the deps file git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@23434 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/config/post.in b/src/config/post.in index 9c03e73f5..a279d0476 100644 --- a/src/config/post.in +++ b/src/config/post.in @@ -95,7 +95,7 @@ depend-dependencies: # until we're sure we've gotten everything converted and excised the # old stuff from Makefile.in files. depend-update-makefile: .depend depend-recurse - if test -n "$(SRCS)" ; then \ + if test "$(ALL_DEP_SRCS)" != " " ; then \ $(CP) .depend $(srcdir)/deps.new ; \ else \ echo "# No dependencies here." > $(srcdir)/deps.new ; \