aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2008-08-26 18:12:08 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2008-08-26 18:12:08 +0000
commitf8ed50c30408a3febcf719d78317f1b8f4d67291 (patch)
tree13748ff4c05f840a85e18ca42b536aa1dd4f362d /Makefile
parent84d1af1b6b907e47b482862d305174e39882ed01 (diff)
Merged revisions 140169 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r140169 | russell | 2008-08-26 13:11:49 -0500 (Tue, 26 Aug 2008) | 4 lines Fix building menuselect-tree with PRINT_DIR set. We _must_ use the --quiet flag here, or else some arbitrary text will end up in the resulting menuselect-tree file and things will explode. ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.0@140170 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 284d64bb3..6570bde13 100644
--- a/Makefile
+++ b/Makefile
@@ -892,8 +892,8 @@ menuselect-tree: $(foreach dir,$(filter-out main,$(MOD_SUBDIRS)),$(wildcard $(di
@echo "<?xml version=\"1.0\"?>" > $@
@echo >> $@
@echo "<menu name=\"Asterisk Module and Build Option Selection\">" >> $@
- @for dir in $(sort $(filter-out main,$(MOD_SUBDIRS))); do $(SUBMAKE) -C $${dir} SUBDIR=$${dir} moduleinfo >> $@; done
- @for dir in $(sort $(filter-out main,$(MOD_SUBDIRS))); do $(SUBMAKE) -C $${dir} SUBDIR=$${dir} makeopts >> $@; done
+ @for dir in $(sort $(filter-out main,$(MOD_SUBDIRS))); do $(SILENTMAKE) -C $${dir} SUBDIR=$${dir} moduleinfo >> $@; done
+ @for dir in $(sort $(filter-out main,$(MOD_SUBDIRS))); do $(SILENTMAKE) -C $${dir} SUBDIR=$${dir} makeopts >> $@; done
@cat build_tools/cflags.xml >> $@
@if [ "${AST_DEVMODE}" = "yes" ]; then \
cat build_tools/cflags-devmode.xml >> $@; \