Changeset 3225
- Timestamp:
- 02/18/08 17:26:37 (10 months ago)
- Files:
-
- trunk/install/dmd-posix/mkinstaller.sh (modified) (1 diff)
- trunk/lib/install-dmd.sh (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/install/dmd-posix/mkinstaller.sh
r3056 r3225 68 68 mkdir -p lib 69 69 cp ../lib/libtango-user-dmd.a lib || die 1 "Failed to copy in the tango .a file" 70 cp ../lib/dmdinclude lib || die 1 "Failed to copy in the dmdinclude file" 70 71 71 72 find include/d -name .svn | xargs rm -rf trunk/lib/install-dmd.sh
r3222 r3225 142 142 . dmdinclude 143 143 144 if [ ! "$DMDVERSIONMAJ" -gt 1 ] 145 then 146 if [ ! "$DMDVERSIONMIN" -gt 21 ] 147 then 148 echo 'Your version of DMD have no support for -defaultlib flag, using libphobos.a' 149 ASPHOBOS="1" 150 fi 144 if [ "$DMDVERSIONMAJ" != "" ] 145 then 146 if [ ! "$DMDVERSIONMAJ" -gt 1 ] 147 then 148 if [ ! "$DMDVERSIONMIN" -gt 21 ] 149 then 150 echo 'Your version of DMD have no support for -defaultlib flag, using libphobos.a' 151 ASPHOBOS="1" 152 fi 153 fi 151 154 fi 152 155 … … 283 286 # Create dmd.conf 284 287 create_dmd_conf() { 285 if [ "$ASPHOBOS" = " 0" ]288 if [ "$ASPHOBOS" = "1" ] 286 289 then 287 290 cat > $CONFPREFIX/$CONF/dmd.conf <<EOF












