You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by sf...@apache.org on 2010/12/19 01:33:34 UTC

svn commit: r1050742 - /httpd/httpd/trunk/build/rules.mk.in

Author: sf
Date: Sun Dec 19 00:33:34 2010
New Revision: 1050742

URL: http://svn.apache.org/viewvc?rev=1050742&view=rev
Log:
Add dependency generation for shared objects

Modified:
    httpd/httpd/trunk/build/rules.mk.in

Modified: httpd/httpd/trunk/build/rules.mk.in
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/build/rules.mk.in?rev=1050742&r1=1050741&r2=1050742&view=diff
==============================================================================
--- httpd/httpd/trunk/build/rules.mk.in (original)
+++ httpd/httpd/trunk/build/rules.mk.in Sun Dec 19 00:33:34 2010
@@ -147,6 +147,9 @@ local-depend: x-local-depend
 		for i in $$list; do \
 			$(MKDEP) $(ALL_CPPFLAGS) $(ALL_INCLUDES) $$i | sed 's/\.o:/.lo:/' >> .deps; \
 		done; \
+		sed 's/\.lo:/.slo:/' < .deps > .deps.$$; \
+		cat .deps.$$ >> .deps; \
+		rm -f .deps.$$; \
 	fi
 
 local-clean: x-local-clean