Changeset 2057
- Timestamp:
- 04/15/07 18:36:20 (2 years ago)
- Files:
-
- trunk/install/gdc-posix-dsss/mkinstaller.sh (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/install/gdc-posix-dsss/mkinstaller.sh
r1910 r2057 12 12 } 13 13 14 if [ ! -e install/gdc-posix /installer.sh ]14 if [ ! -e install/gdc-posix-dsss/installer.sh ] 15 15 then 16 16 die 1 'You must run mkinstaller.sh from the Tango base.' … … 52 52 cd tmp || die 1 "Failed to cd to temporary Tango install" 53 53 mkdir -p bin 54 cp ../install/gdc-posix /uninstall.sh bin/uninstall-tango-core || die 1 "Failed to install the uninstaller"54 cp ../install/gdc-posix-dsss/uninstall.sh bin/uninstall-tango-core || die 1 "Failed to install the uninstaller" 55 55 tar zcf ../tango.tar.gz * || die 1 "Failed to create tango.tar.gz" 56 56 cd .. || exit 1 … … 61 61 ( 62 62 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 ; 64 64 tar cf - core.tar.gz tango.tar.gz 65 65 ) > tango-$TANGO_VERSION-gdc-$PLATFORM.sh || die 1 "Failed to create the installer" … … 76 76 ( 77 77 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 ; 79 79 tar cf - core.tar.gz tango.tar.gz dsss.tar.gz 80 80 ) > tango-$TANGO_VERSION-gdc-$PLATFORM-withDSSS.sh || die 1 "Failed to create the installer with DSSS" … … 117 117 ( 118 118 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 ; 120 120 tar cf - core.tar.gz tango.tar.gz dsss.tar.gz gdc.tar.gz 121 121 ) > tango-$TANGO_VERSION-gdc-$PLATFORM-withDSSS-withGDC.sh || die 1 "Failed to create the installer with DSSS and GDC"












