Changeset 4726 in vbox
- Timestamp:
- Sep 12, 2007 10:23:18 AM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 24401
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure
r4724 r4726 244 244 freebsd) 245 245 ;; 246 SunOS)246 sunos) 247 247 OS='solaris' 248 248 ;; … … 417 417 yasm_min=`echo $yasm_ver|cut -d. -f2` 418 418 yasm_rev=`echo $yasm_ver|cut -d. -f3` 419 yasm_ver_mul= $(($yasm_maj*10000+$yasm_min*100+$yasm_rev))419 yasm_ver_mul=`expr $yasm_maj \* 10000 + $yasm_min \* 100 + $yasm_rev` 420 420 if [ $yasm_ver_mul -lt 501 ]; then 421 421 log_failure "found version $yasm_ver, expected at least 0.5.1" … … 1167 1167 1168 1168 # scan command line options 1169 for option ; do1169 for option in $*; do 1170 1170 case "$option" in 1171 1171 --help|-help|-h) … … 1321 1321 PATH="$PATH:/opt/gnome/bin" 1322 1322 # solaris 1323 PATH=" $PATH:/usr/local/bin:/usr/sfw/bin:/usr/ccs/bin"1323 PATH="/usr/ucb:/usr/xpg4/bin:$PATH:/usr/local/bin:/usr/sfw/bin:/usr/ccs/bin" 1324 1324 1325 1325 # the tools
Note:
See TracChangeset
for help on using the changeset viewer.