Changeset 1574
- Timestamp:
- 01/31/07 23:03:05 (2 years ago)
- Files:
-
- trunk/install/gdc-posix/installer.sh (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/install/gdc-posix/installer.sh
r1556 r1574 19 19 # This installer works by black magic: The following number must be the exact 20 20 # number of lines in this file+4: 21 LINES= 9321 LINES=103 22 22 23 23 # Install GDC if necessary … … 54 54 else 55 55 # Get our proper GDC prefix 56 GDCDIR="`/opt/gdc/bin/gdc -print-search-dirs | grep '^install:' | sed 's/install: //'`/../../../.." 56 OLDIPS="$IPS" 57 IPS=: 58 for i in $PATH 59 do 60 if [ -e "$i/bin/gdc" ] 61 then 62 GDCDIR="$i" 63 break 64 fi 65 done 66 IPS="$OLDIPS" 57 67 fi 58 68 fi












