[Freeswitch-svn] [commit] r10804 - freeswitch/trunk/libs/sofia-sip/libsofia-sip-ua
FreeSWITCH SVN
mikej at freeswitch.org
Tue Dec 16 11:39:51 PST 2008
Author: mikej
Date: Tue Dec 16 14:39:51 2008
New Revision: 10804
Log:
Wed Nov 12 12:14:17 CST 2008 Pekka Pessi <first.last at nokia.com>
* libsofia-sip-ua/Makefile.am: use subshell intead of pushd in doxygen target
Modified:
freeswitch/trunk/libs/sofia-sip/libsofia-sip-ua/Makefile.am
Modified: freeswitch/trunk/libs/sofia-sip/libsofia-sip-ua/Makefile.am
==============================================================================
--- freeswitch/trunk/libs/sofia-sip/libsofia-sip-ua/Makefile.am (original)
+++ freeswitch/trunk/libs/sofia-sip/libsofia-sip-ua/Makefile.am Tue Dec 16 14:39:51 2008
@@ -80,24 +80,22 @@
fi ; \
done
for d in $(DIST_SUBDIRS); do \
- test -r $$d/Doxyfile \
- && pushd $$d > /dev/null \
- && echo running ${DOXYGEN} first time in $$d \
- && ${DOXYGEN} 2>&1 \
- | egrep -v -i -e 'Warning: (unsupported (xml/)?html tag|unable to resolve reference|explicit link.*could not be resolved)' \
- ; popd > /dev/null ; \
- test -r docs/$$d.doxytags && \
+ ( test -r $$d/Doxyfile && \
+ cd $$d > /dev/null && \
+ echo running ${DOXYGEN} first time in $$d && \
+ ${DOXYGEN} 2>&1 ) | \
+ egrep -v -i -e 'Warning: (unsupported (xml/)?html tag|unable to resolve reference|explicit link.*could not be resolved)' ; \
+ test -r docs/$$d.doxytags && \
sed '2,10s!<name>index</name>!<name>'$$d'_index</name>!' \
docs/$$d.doxytags > docs/$$d.doxytags.tmp && \
mv -f docs/$$d.doxytags.tmp docs/$$d.doxytags ; \
done
for d in $(DIST_SUBDIRS); do \
- test -r $$d/Doxyfile \
- && pushd $$d > /dev/null \
- && echo running ${DOXYGEN} second time in $$d \
- && ${DOXYGEN} 2>&1 \
- | egrep -v -i -e 'Warning: Unsupported (xml/)?html tag' \
- ; popd > /dev/null ; \
+ ( test -r $$d/Doxyfile && \
+ cd $$d > /dev/null \
+ echo running ${DOXYGEN} second time in $$d && \
+ ${DOXYGEN} 2>&1 ) | \
+ egrep -v -i -e 'Warning: Unsupported (xml/)?html tag' ; \
test -r docs/$$d.doxytags && \
sed '2,10s!<name>index</name>!<name>'$$d'_index</name>!' \
docs/$$d.doxytags > docs/$$d.doxytags.tmp && \
More information about the Freeswitch-svn
mailing list