summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjkeil <jkeil@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-07-16 10:42:35 +0000
committerjkeil <jkeil@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-07-16 10:42:35 +0000
commitb257fba36f5f7cb63fa725891c0f1a3ef4bbd1aa (patch)
treef43da9e0f710d1c5212153a64db196b0cee7756e
parente258b9bde19e51a6e0197fd4b42cabac2a53c77a (diff)
downloadmpv-b257fba36f5f7cb63fa725891c0f1a3ef4bbd1aa.tar.bz2
mpv-b257fba36f5f7cb63fa725891c0f1a3ef4bbd1aa.tar.xz
fix typo in shell variable name usage
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1325 b3059339-0415-0410-9bf9-f77b7e298cf2
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 75c47718e7..4cee994859 100755
--- a/configure
+++ b/configure
@@ -343,7 +343,7 @@ fi
# out which assembler is used by the $_cc compiler
if [ "$_as" = auto ]; then
_as=`$_cc -print-prog-name=as`
- if [ "_$as" = "" ]; then
+ if [ "$_as" = "" ]; then
_as=as
fi
fi