aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorrizzo <rizzo@f38db490-d61c-443f-a65b-d21fe96a405b>2007-11-17 14:44:03 +0000
committerrizzo <rizzo@f38db490-d61c-443f-a65b-d21fe96a405b>2007-11-17 14:44:03 +0000
commitaaec5b990e8fa7740530d725e4d03328927af66d (patch)
tree5aaaf624f125c5b74cfd4cd60798fa3681842682 /Makefile
parentfb8143ad310bd312314014a3cc521bc090870ffb (diff)
wrong variable, wrong order -> broken build.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@89381 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index cbf7005bc..a6ed5085b 100644
--- a/Makefile
+++ b/Makefile
@@ -253,13 +253,13 @@ ASTCFLAGS+=$(MALLOC_DEBUG)$(BUSYDETECT)$(OPTIONS)
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
+ MOD_SUBDIRS += res main
endif
+SUBDIRS:=$(OTHER_SUBDIRS) $(MOD_SUBDIRS)
SUBDIRS_INSTALL:=$(SUBDIRS:%=%-install)
SUBDIRS_CLEAN:=$(SUBDIRS:%=%-clean)
SUBDIRS_DIST_CLEAN:=$(SUBDIRS:%=%-dist-clean)