[asterisk-commits] rizzo: trunk r89381 - /trunk/Makefile
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Sat Nov 17 08:44:04 CST 2007
Author: rizzo
Date: Sat Nov 17 08:44:03 2007
New Revision: 89381
URL: http://svn.digium.com/view/asterisk?view=rev&rev=89381
Log:
wrong variable, wrong order -> broken build.
Modified:
trunk/Makefile
Modified: trunk/Makefile
URL: http://svn.digium.com/view/asterisk/trunk/Makefile?view=diff&rev=89381&r1=89380&r2=89381
==============================================================================
--- trunk/Makefile (original)
+++ trunk/Makefile Sat Nov 17 08:44:03 2007
@@ -253,13 +253,13 @@
MOD_SUBDIRS:=channels pbx apps codecs formats cdr funcs
OTHER_SUBDIRS:=utils agi
-SUBDIRS:=$(OTHER_SUBDIRS) $(MOD_SUBDIRS)
# in cygwin we need to build main (i.e. asterisk.dll) first, then res.
ifneq ($(findstring $(OSARCH), mingw32 cygwin ),)
SUBDIRS+= main res
else
- OTHER_SUBDIRS += res main
-endif
+ MOD_SUBDIRS += res main
+endif
+SUBDIRS:=$(OTHER_SUBDIRS) $(MOD_SUBDIRS)
SUBDIRS_INSTALL:=$(SUBDIRS:%=%-install)
SUBDIRS_CLEAN:=$(SUBDIRS:%=%-clean)
SUBDIRS_DIST_CLEAN:=$(SUBDIRS:%=%-dist-clean)
More information about the asterisk-commits
mailing list