mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-18 15:49:56 +00:00
dirty hack of a fix to deal with the fact that chan_vpb changed to chan_vpb.cc
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@37276 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
2
Makefile
2
Makefile
@@ -900,6 +900,6 @@ mxml/libmxml.a:
|
|||||||
|
|
||||||
makeopts.xml: $(foreach dir,$(MOD_SUBDIRS),$(dir)/*.c) build_tools/cflags.xml sounds/sounds.xml
|
makeopts.xml: $(foreach dir,$(MOD_SUBDIRS),$(dir)/*.c) build_tools/cflags.xml sounds/sounds.xml
|
||||||
@echo "Generating list of available modules ..."
|
@echo "Generating list of available modules ..."
|
||||||
@build_tools/prep_moduledeps > $@
|
@build_tools/prep_moduledeps 2>/dev/null > $@
|
||||||
|
|
||||||
.PHONY: menuselect sounds clean clean-depend dist-clean distclean all _all depend cleantest uninstall _uninstall uninstall-all dont-optimize valgrind $(SUBDIRS_INSTALL) $(SUBDIRS_CLEAN) $(SUBDIRS_CLEAN_DEPEND) $(SUBDIRS_DEPEND) $(SUBDIRS_UNINSTALL) $(SUBDIRS)
|
.PHONY: menuselect sounds clean clean-depend dist-clean distclean all _all depend cleantest uninstall _uninstall uninstall-all dont-optimize valgrind $(SUBDIRS_INSTALL) $(SUBDIRS_CLEAN) $(SUBDIRS_CLEAN_DEPEND) $(SUBDIRS_DEPEND) $(SUBDIRS_UNINSTALL) $(SUBDIRS)
|
||||||
|
|||||||
@@ -33,12 +33,13 @@ process_dir() {
|
|||||||
displayname=${4}
|
displayname=${4}
|
||||||
|
|
||||||
echo -e "\t<category name=\"MENUSELECT_${catsuffix}\" displayname=\"${displayname}\">"
|
echo -e "\t<category name=\"MENUSELECT_${catsuffix}\" displayname=\"${displayname}\">"
|
||||||
for file in ${dir}/${prefix}*.c
|
for file in `ls ${dir}/${prefix}*.c ${dir}/${prefix}*.cc | sort`
|
||||||
do
|
do
|
||||||
fname=`basename ${file} .c`
|
fname=`basename ${file} .c`
|
||||||
|
fname=`basename ${fname} .cc`
|
||||||
get_description ${file}
|
get_description ${file}
|
||||||
desc=${TDESC}
|
desc=${TDESC}
|
||||||
echo -e "\t\t<member name=\"${fname}\" displayname=\"${desc}\" remove_on_change=\"${dir}/${fname}.o ${dir}/${fname}.so\">"
|
echo -e "\t\t<member name=\"${fname}\" displayname=\"${desc}\" remove_on_change=\"${dir}/${fname}.o ${dir}/${fname}.oo ${dir}/${fname}.so\">"
|
||||||
awk -f build_tools/get_moduleinfo ${file}
|
awk -f build_tools/get_moduleinfo ${file}
|
||||||
echo -e "\t\t</member>"
|
echo -e "\t\t</member>"
|
||||||
done
|
done
|
||||||
|
|||||||
Reference in New Issue
Block a user