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.bat

    r18996 r21173  
    1111)
    1212
     13if "x%$APACHE_HTTPD_HOME%" == "x" (
     14  set APACHE_HTTPD_HOME=%GSDLHOME%\apache-httpd\windows
     15)
     16
    1317if not exist "%GSDLHOME%\apache-httpd" (
    1418  REM ... and it also needs to have been configured with --enable-apache-httpd
    1519  REM This is because the entension needs to add mod_flvx to the web server
    1620
    17   echo Could not find the directory "%GSDLHOME%\apache-httpd"
    18   echo Has the main Greenstone been configure for this?
    19   echo e.g. nmake /f win32.mak APACHE_HTTPD=1 [... other options]
    20   exit ErrorExitNeg1
     21  echo Warning: Could not find the directory "%GSDLHOME%\apache-httpd"
     22  echo          Has the main Greenstone been configure for this?
     23  echo          e.g. nmake /f win32.mak APACHE_HTTPD=1 [... other options]
     24  echo.
     25  echo => Only the build-time code for the extension will be compiled
     26  set APACHE_HTTPD_HOME=
    2127)
    2228
     
    2834
    2935
    30 for /D %%d IN ("%GSDLOS%") do (
    31   if not exist "%GEXTVIDEO_INSTALLED%\%%d" (
    32     echo Creating %GEXTVIDEO_INSTALLED%\%%d
    33     mkdir "%GEXTVIDEO_INSTALLED%\%%d"
    34   )
     36echo "Test for directory in Windows might not be correct syntax!!"
     37if not exist "%GEXTVIDEO_INSTALLED%" (
     38  echo Creating %GEXTVIDEO_INSTALLED%
     39  mkdir "%GEXTVIDEO_INSTALLED%"
    3540)
    3641
    37 set dirlist=build-srcpack runtime-srcpack
     42set dirlist=build-srcpack
     43
     44if "x%APACHE_HTTPD_HOME%" != "x" (
     45  set dirlist=%dirlist% runtime-srcpack
     46)
     47
    3848if exist "devel-srcpack" (
    3949  set dirlist=%dirlist% devel-srcpack
Note: See TracChangeset for help on using the changeset viewer.