Mercurial > mplayer.hg
comparison configure @ 1324:84df2a0ce2db
fix typo in shell variable name usage
author | jkeil |
---|---|
date | Mon, 16 Jul 2001 10:42:35 +0000 |
parents | 3e38a0c03567 |
children | dcc6810426e1 |
comparison
equal
deleted
inserted
replaced
1323:3e38a0c03567 | 1324:84df2a0ce2db |
---|---|
341 | 341 |
342 # now that we know what compiler should be used for compilation, try to find | 342 # now that we know what compiler should be used for compilation, try to find |
343 # out which assembler is used by the $_cc compiler | 343 # out which assembler is used by the $_cc compiler |
344 if [ "$_as" = auto ]; then | 344 if [ "$_as" = auto ]; then |
345 _as=`$_cc -print-prog-name=as` | 345 _as=`$_cc -print-prog-name=as` |
346 if [ "_$as" = "" ]; then | 346 if [ "$_as" = "" ]; then |
347 _as=as | 347 _as=as |
348 fi | 348 fi |
349 fi | 349 fi |
350 | 350 |
351 | 351 |