Changeset 2330


Ignore:
Timestamp:
05/10/2008 16:23:16 (4 years ago)
Author:
chris
Message:

Substitute parcel directory and Box version into InstallJammer? config
file for Windows installer.

Location:
box/trunk
Files:
1 edited
1 moved

Legend:

Unmodified
Added
Removed
  • box/trunk/configure.ac

    r2327 r2330  
    307307AC_SUBST([localstatedir_expanded]) 
    308308 
     309## Figure out the client parcel directory and substitute it 
     310client_parcel_dir=`perl infrastructure/parcelpath.pl client $target_os` 
     311os_name=`uname -o` 
     312if test "$os_name" = "Cygwin"; then 
     313        client_parcel_dir=`cygpath -wa $client_parcel_dir` 
     314fi 
     315AC_SUBST([client_parcel_dir]) 
     316 
     317## Figure out version and substitute it in 
     318box_version=`perl infrastructure/printversion.pl` 
     319AC_SUBST([box_version]) 
    309320 
    310321### Output files 
     
    324335                   contrib/solaris/bbackupd-smf-method 
    325336                   contrib/solaris/bbstored-smf-method 
     337                   contrib/windows/installer/boxbackup.mpi 
    326338                   infrastructure/makebuildenv.pl 
    327339                   infrastructure/makeparcels.pl 
  • box/trunk/contrib/windows/installer/boxbackup.mpi.in

    r2274 r2330  
    2222 
    2323BBVersionNo 
    24 1857 
     24@box_version@ 
    2525 
    2626BrandName 
     
    274274} 
    275275FileGroup ::481451CC-F49C-D389-8645076F595B -setup Install -active Yes -platforms {Windows MacOS-X} -name {Program Files} -parent FileGroups 
    276 File ::B9F58CFC-EE7A-BEE4-62CB-2C10665095A2 -filemethod {Update files with more recent dates} -type dir -directory <%InstallDir%> -name /home/petjal/doc/teb/cli/bu/installer/win/2.2 -location C:/cygwin/home/Chris/general/parcels/boxbackup-chris_general_1988M-backup-client-mingw32 -parent 481451CC-F49C-D389-8645076F595B 
     276File ::B9F58CFC-EE7A-BEE4-62CB-2C10665095A2 -filemethod {Update files with more recent dates} -type dir -directory <%InstallDir%> -name /home/petjal/doc/teb/cli/bu/installer/win/2.2 -location @client_parcel_dir@ -parent 481451CC-F49C-D389-8645076F595B 
    277277File ::CDDED10B-2747-DD07-5F9D-42A7FD7BB7E6 -name LICENSE.txt -parent B9F58CFC-EE7A-BEE4-62CB-2C10665095A2 
    278278File ::D6E262BC-8A84-B6DB-794B-8FDC8AECB079 -name mgwz.dll -parent B9F58CFC-EE7A-BEE4-62CB-2C10665095A2 
Note: See TracChangeset for help on using the changeset viewer.