Changeset 38924


Ignore:
Timestamp:
Aug 30, 2009, 2:33:37 PM (15 years ago)
Author:
neteler
Message:

Colin Nielsen: version cosmetics

File:
1 edited

Legend:

Unmodified
Added
Removed
  • grass/branches/releasebranch_6_4/mswindows/GRASS-Installer.nsi

    r37903 r38924  
    2828!define RELEASE_GRASS_BASE "GRASS"
    2929
    30 !define DEV6_VERSION_NUMBER "6-SVN"
     30!define DEV6_VERSION_NUMBER "6.5.SVN"
    3131!define DEV6_SVN_REVISION "36599"
    3232!define DEV6_BINARY_REVISION "1"
     
    3434!define DEV6_GRASS_BASE "GRASS-6-SVN"
    3535
    36 !define DEV7_VERSION_NUMBER "7-SVN"
     36!define DEV7_VERSION_NUMBER "7.0.SVN"
    3737!define DEV7_SVN_REVISION ""
    3838!define DEV7_BINARY_REVISION "1"
     
    682682        ;Create the $INSTALL_DIR\msys\grass link directory
    683683        CreateDirectory $INSTALL_DIR\msys\grass
     684       
     685        ;Get the short form of the install path (to allow for paths with spaces)
     686        VAR /GLOBAL INST_DIR_SHORT
     687        GetFullPathName /SHORT $INST_DIR_SHORT $INSTALL_DIR
    684688
    685689        ;create the $INSTALL_DIR\msys\etc\fstab with the main grass dir mount info
     
    687691        FileOpen $0 $INSTALL_DIR\msys\etc\fstab w
    688692        IfErrors done_create_fstab
    689         FileWrite $0 '$INSTALL_DIR   /grass$\r$\n'
     693        FileWrite $0 '$INST_DIR_SHORT   /grass$\r$\n'
    690694        FileClose $0
    691695        done_create_fstab:
Note: See TracChangeset for help on using the changeset viewer.