Ignore:
Timestamp:
2009-12-01T22:32:16+13:00 (14 years ago)
Author:
davidb
Message:

No longer have top level 'installed' folder.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gs2-extensions/gsdl-video/trunk/CASCADE-MAKE.sh

    r18953 r21173  
    99fi
    1010
    11 if [ ! -d "$GSDLHOME/apache-httpd" ] ; then
     11if [ -z $APACHE_HTTPD_HOME ] ; then
     12  export APACHE_HTTPD_HOME=$GSDLHOME/apache-httpd/$GSDLOS
     13fi
     14
     15if [ ! -d "$APACHE_HTTPD_HOME" ] ; then
    1216  # ... and it also needs to have been configured with --enable-apache-httpd
    1317  # This is because the entension needs to add mod_flvx to the web server
    1418
    15   echo "Could not find the directory \"$GSDLHOME/apache-httpd\""
    16   echo "Has the main Greenstone been configure for this? "
    17   echo "e.g. ./configure --enable-apache-httpd [... other options]"
    18   exit -1
     19  echo "Warning: Could not find the directory \"$APACHE_HTTPD_HOME\""
     20  echo "         Has the main Greenstone been configure for this? "
     21  echo "         e.g. ./configure --enable-apache-httpd [... other options]"
     22  echo ""
     23  echo "=> Only the build-time code for the extension will be compiled"
     24  export APACHE_HTTPD_HOME=
    1925fi
    2026
     
    2531# Guaranteed that GSDLOS has now been set
    2632
    27 for d in $GSDLOS ; do
    28   if [ ! -e $GEXTVIDEO_INSTALLED/$d ] ; then
    29     echo "Creating $GEXTVIDEO_INSTALLED/$d"
    30     mkdir $GEXTVIDEO_INSTALLED/$d
    31   fi
    32 done
     33if [ ! -e $GEXTVIDEO_INSTALLED ] ; then
     34  echo "Creating $GEXTVIDEO_INSTALLED"
     35  mkdir $GEXTVIDEO_INSTALLED
     36fi
    3337
    34 dirlist="build-srcpack runtime-srcpack"
     38dirlist="build-srcpack"
     39
     40if [ ! -z $APACHE_HTTPD_HOME ] ; then
     41  dirlist="$dirlist runtime-srcpack"
     42fi
     43
    3544if [ -e devel-srcpack ] ; then
    3645  dirlist="$dirlist devel-srcpack"
Note: See TracChangeset for help on using the changeset viewer.