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

Changeset 3222

Show
Ignore:
Timestamp:
02/18/08 03:36:35 (10 months ago)
Author:
Jim Panic
Message:

Bugfixes for mkinstaller and install-dmd, thanks Deewiant

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/install/dmd-posix/installer.sh

    r2866 r3222  
    7272    export PATH="$DMDDIR/bin:$PATH" 
    7373    mkdir -p $DMDDIR/bin || die 1 "Failed to create the DMD install directory" 
    74     cd $DMDDIR || die 1 "Failed to cd to the DMD install directory" 
     74    cd $DMDDIR/bin || die 1 "Failed to cd to the DMD install directory" 
    7575    tail -n+$LINES $FULLNAME | tar Oxf - dmd.tar.gz | gunzip -c | tar xf - || die 1 "Failed to extract DMD" 
    7676else 
  • trunk/lib/install-dmd.sh

    r3102 r3222  
    142142. dmdinclude 
    143143 
    144 if [ ! "$DMDVERSIONMAJ" -gt "1"
    145 then 
    146     if [ ! "$DMDVERSIONMIN" -gt "21"
     144if [ ! "$DMDVERSIONMAJ" -gt 1
     145then 
     146    if [ ! "$DMDVERSIONMIN" -gt 21
    147147    then 
    148148        echo 'Your version of DMD have no support for -defaultlib flag, using libphobos.a'