make_xml_documentation: Properly handle absolute LOCAL_MOD_SUBDIRS.

If LOCAL_MOD_SUBDIRS contains absolute paths, do not prefix them with
the path to Asterisk's source tree.

Fixes #142

(cherry picked from commit 2293edffd0)
This commit is contained in:
Sean Bright 2023-11-27 11:43:15 -05:00 committed by Asterisk Development Team
parent 06d86c41af
commit 3ed329edc9
1 changed files with 6 additions and 4 deletions

View File

@ -137,10 +137,12 @@ fi
if [ "${command}" = "print_dependencies" ] ; then
for subdir in ${mod_subdirs} ; do
subpath="${source_tree}/${subdir}"
# We WANT word splitting in the following line.
# shellcheck disable=SC2046
${GREP} -l -E '(language="en_US"|appdocsxml.dtd)' $(${FIND} "${subpath}" -name '*.c' -or -name '*.cc' -or -name '*.xml') || :
case "$subdir" in
/*) subpath="$subdir" ;;
*) subpath="$source_tree/$subdir" ;;
esac
${FIND} "${subpath}" \( -name '*.c' -o -name '*.cc' -o -name '*.xml' \) \
-exec ${GREP} -l -E '(language="en_US"|appdocsxml.dtd)' '{}' \;
done
exit
fi