summaryrefslogtreecommitdiff
path: root/pjlib/build
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/build
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/build')
-rw-r--r--pjlib/build/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/pjlib/build/Makefile b/pjlib/build/Makefile
index 1e0e88f9..76fece33 100644
--- a/pjlib/build/Makefile
+++ b/pjlib/build/Makefile
@@ -58,7 +58,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/docs/html.." ; \
cp -a ../docs/html/* $(WWWDIR)/pjlib/docs/html/ ; \
fi