Ignore:
Timestamp:
2009-03-18T15:48:35+13:00 (15 years ago)
Author:
ak19
Message:

If statement to check for which makefile is active (to distinguish the svn from the binary release) in order to invoke the make command correctly.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gsdl/trunk/GSI-Makefile

    r18706 r18707  
    6666        | sed "s@\*\*GSDLHOME\*\*@${GSDLHOME}@g" \
    6767        > "${GSDLHOME}/apache-httpd/conf/httpd.conf" ; \
    68           echo "Type 'make web-start' to start the web server running on port $$port" ; \
     68          if test -e Makefile ; then \
     69            echo "Type 'make web-start' to start the web server running on port $$port" ; \
     70          else \
     71        echo "Type 'make -f GSI-Makefile web-start' to start the web server running on port $$port" ; \
     72          fi ; \
    6973        fi ; \
    7074        echo "Done" ; )
Note: See TracChangeset for help on using the changeset viewer.