summaryrefslogtreecommitdiff
path: root/pjlib-util
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2010-09-23 22:46:11 +0000
committerBenny Prijono <bennylp@teluu.com>2010-09-23 22:46:11 +0000
commit0c0fd8df344b0e8ea7316500a27ed6186ac12a77 (patch)
tree0ae9e04e23f47440417bb27b827a6d0a4b0643a1 /pjlib-util
parenta850b761252a1b7f01c4380a8432eb37781c357d (diff)
Misc (re #1134): fixed error in Makefile target for generating doxygen documentation when WWWDIR is specified
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@3319 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjlib-util')
-rw-r--r--pjlib-util/build/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/pjlib-util/build/Makefile b/pjlib-util/build/Makefile
index 6acea05b..69e92b41 100644
--- a/pjlib-util/build/Makefile
+++ b/pjlib-util/build/Makefile
@@ -56,7 +56,7 @@ all: $(TARGETS)
doc:
cd .. && rm -rf docs/html docs/latex && doxygen docs/doxygen.cfg
- @if test ! "$(WWWDIR)" == ""; then \
+ @if [ -n "$(WWWDIR)" ]; then \
echo "Copying to $(WWWDIR)/pjlib-util/docs/html.." ; \
cp -a ../docs/html/* $(WWWDIR)/pjlib-util/docs/html/ ; \
fi