Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Changeset 2057

Show
Ignore:
Timestamp:
04/15/07 18:36:20 (2 years ago)
Author:
Gregor
Message:

install/gdc-posix-dsss/mkinstaller.sh: Only use things from -dsss

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/install/gdc-posix-dsss/mkinstaller.sh

    r1910 r2057  
    1212} 
    1313 
    14 if [ ! -e install/gdc-posix/installer.sh ] 
     14if [ ! -e install/gdc-posix-dsss/installer.sh ] 
    1515then 
    1616    die 1 'You must run mkinstaller.sh from the Tango base.' 
     
    5252cd tmp || die 1 "Failed to cd to temporary Tango install" 
    5353mkdir -p bin 
    54 cp ../install/gdc-posix/uninstall.sh bin/uninstall-tango-core || die 1 "Failed to install the uninstaller" 
     54cp ../install/gdc-posix-dsss/uninstall.sh bin/uninstall-tango-core || die 1 "Failed to install the uninstaller" 
    5555tar zcf ../tango.tar.gz * || die 1 "Failed to create tango.tar.gz" 
    5656cd .. || exit 1 
     
    6161( 
    6262    echo -e '#!/bin/bash\nINST_GDC=0\nINST_DSSS=0' ; 
    63     cat install/gdc-posix/installer.sh ; 
     63    cat install/gdc-posix-dsss/installer.sh ; 
    6464    tar cf - core.tar.gz tango.tar.gz 
    6565) > tango-$TANGO_VERSION-gdc-$PLATFORM.sh || die 1 "Failed to create the installer" 
     
    7676    ( 
    7777        echo -e '#!/bin/bash\nINST_GDC=0\nINST_DSSS=1' ; 
    78         cat install/gdc-posix/installer.sh ; 
     78        cat install/gdc-posix-dsss/installer.sh ; 
    7979        tar cf - core.tar.gz tango.tar.gz dsss.tar.gz 
    8080    ) > tango-$TANGO_VERSION-gdc-$PLATFORM-withDSSS.sh || die 1 "Failed to create the installer with DSSS" 
     
    117117        ( 
    118118            echo -e '#!/bin/bash\nINST_GDC=1\nINST_DSSS=1' ; 
    119             cat install/gdc-posix/installer.sh ; 
     119            cat install/gdc-posix-dsss/installer.sh ; 
    120120            tar cf - core.tar.gz tango.tar.gz dsss.tar.gz gdc.tar.gz 
    121121        ) > tango-$TANGO_VERSION-gdc-$PLATFORM-withDSSS-withGDC.sh || die 1 "Failed to create the installer with DSSS and GDC"