Changeset 3319


Ignore:
Timestamp:
Sep 23, 2010 10:46:11 PM (13 years ago)
Author:
bennylp
Message:

Misc (re #1134): fixed error in Makefile target for generating doxygen documentation when WWWDIR is specified

Location:
pjproject/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib-util/build/Makefile

    r3087 r3319  
    5757doc: 
    5858        cd .. && rm -rf docs/html docs/latex && doxygen docs/doxygen.cfg 
    59         @if test ! "$(WWWDIR)" == ""; then \ 
     59        @if [ -n "$(WWWDIR)" ]; then \ 
    6060                echo "Copying to $(WWWDIR)/pjlib-util/docs/html.." ; \ 
    6161                cp -a ../docs/html/* $(WWWDIR)/pjlib-util/docs/html/ ; \ 
  • pjproject/trunk/pjlib/build/Makefile

    r3106 r3319  
    5959doc: 
    6060        cd .. && rm -rf docs/html docs/latex && doxygen docs/doxygen.cfg 
    61         @if test ! "$(WWWDIR)" == ""; then \ 
     61        @if [ -n "$(WWWDIR)" ]; then \ 
    6262                echo "Copying to $(WWWDIR)/pjlib/docs/html.." ; \ 
    6363                cp -a ../docs/html/* $(WWWDIR)/pjlib/docs/html/ ; \ 
  • pjproject/trunk/pjmedia/build/Makefile

    r3174 r3319  
    124124doc: 
    125125        cd .. && rm -rf docs/html docs/latex && doxygen docs/doxygen.cfg 
    126         @if test ! "$(WWWDIR)" == ""; then \ 
     126        @if [ -n "$(WWWDIR)" ]; then \ 
    127127                echo "Copying to $(WWWDIR)/pjmedia/docs/html.." ; \ 
    128128                rm -rf $(WWWDIR)/pjmedia/docs/html/* ; \ 
  • pjproject/trunk/pjnath/build/Makefile

    r2183 r3319  
    8080doc: 
    8181        cd .. && rm -rf docs/html docs/latex && doxygen docs/doxygen.cfg 
    82         @if test ! "$(WWWDIR)" == ""; then \ 
     82        @if [ -n "$(WWWDIR)" ]; then \ 
    8383                echo "Copying to $(WWWDIR)/pjnath/docs/html.." ; \ 
    8484                cp -a ../docs/html/* $(WWWDIR)/pjnath/docs/html/ ; \ 
  • pjproject/trunk/pjsip/build/Makefile

    r3243 r3319  
    111111doc: 
    112112        cd .. && rm -rf docs/html docs/latex && doxygen docs/doxygen.cfg 
    113         @if test ! "$(WWWDIR)" == ""; then \ 
     113        @if [ -n "$(WWWDIR)" ]; then \ 
    114114                echo "Copying to $(WWWDIR)/pjsip/docs/html.." ; \ 
    115115                cp -a ../docs/html/* $(WWWDIR)/pjsip/docs/html/ ; \ 
Note: See TracChangeset for help on using the changeset viewer.