[asterisk-addons-commits] kpfleming: trunk r579 - in /trunk: ./ Makefile.rules
SVN commits to the Asterisk addons project
asterisk-addons-commits at lists.digium.com
Wed Apr 30 07:32:23 CDT 2008
Author: kpfleming
Date: Wed Apr 30 07:32:23 2008
New Revision: 579
URL: http://svn.digium.com/view/asterisk-addons?view=rev&rev=579
Log:
Merged revisions 578 via svnmerge from
https://origsvn.digium.com/svn/asterisk-addons/branches/1.4
........
r578 | tilghman | 2008-04-29 23:46:37 -0500 (Tue, 29 Apr 2008) | 13 lines
Don't exclude system header files when doing dependency checks. The reason for
this is fairly obvious -- the Asterisk header files (but only in -addons) are
part of the system header files at that point, so a changed buildopts.h is
considered a change in the system headers. We WANT that change to be
considered a reason to rebuild everything in -addons, since the buildsum will
no longer match at runtime.
Note that if you're building -addons, you'll still need to do a 'make clean'
to get the old dependency files to go away this first time, but after that,
the dependency checks will take care of it for you.
(Closes issue #11291)
........
Modified:
trunk/ (props changed)
trunk/Makefile.rules
Propchange: trunk/
------------------------------------------------------------------------------
--- branch-1.4-merged (original)
+++ branch-1.4-merged Wed Apr 30 07:32:23 2008
@@ -1,1 +1,1 @@
-/branches/1.4:1-299,308,310,317,319,329,342,348,358,380,382,387,389,398,405,410,414,417,423,428,466,472,475,479,485,490,502,539,574
+/branches/1.4:1-299,308,310,317,319,329,342,348,358,380,382,387,389,398,405,410,414,417,423,428,466,472,475,479,485,490,502,539,574,578
Modified: trunk/Makefile.rules
URL: http://svn.digium.com/view/asterisk-addons/trunk/Makefile.rules?view=diff&rev=579&r1=578&r2=579
==============================================================================
--- trunk/Makefile.rules (original)
+++ trunk/Makefile.rules Wed Apr 30 07:32:23 2008
@@ -21,7 +21,7 @@
.PHONY: dist-clean
# extra cflags to build dependencies. Recursively expanded.
-MAKE_DEPS= -MMD -MT $@ -MF .$(subst /,_,$@).d -MP
+MAKE_DEPS= -MD -MT $@ -MF .$(subst /,_,$@).d -MP
ifeq ($(NOISY_BUILD),)
ECHO_PREFIX=@
More information about the asterisk-addons-commits
mailing list