Changeset 3222
- Timestamp:
- 02/18/08 03:36:35 (10 months ago)
- Files:
-
- trunk/install/dmd-posix/installer.sh (modified) (1 diff)
- trunk/lib/install-dmd.sh (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/install/dmd-posix/installer.sh
r2866 r3222 72 72 export PATH="$DMDDIR/bin:$PATH" 73 73 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" 75 75 tail -n+$LINES $FULLNAME | tar Oxf - dmd.tar.gz | gunzip -c | tar xf - || die 1 "Failed to extract DMD" 76 76 else trunk/lib/install-dmd.sh
r3102 r3222 142 142 . dmdinclude 143 143 144 if [ ! "$DMDVERSIONMAJ" -gt "1"]145 then 146 if [ ! "$DMDVERSIONMIN" -gt "21"]144 if [ ! "$DMDVERSIONMAJ" -gt 1 ] 145 then 146 if [ ! "$DMDVERSIONMIN" -gt 21 ] 147 147 then 148 148 echo 'Your version of DMD have no support for -defaultlib flag, using libphobos.a'












