summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-10-22 22:14:08 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-10-22 22:14:08 +0000
commit1627b0fb417b2387198474ca87fa548e390d1313 (patch)
tree352f36c7b057a0e8f1b64af64955250640c28b60 /configure
parent5faacb87f7e01f2629c8bf3a9f1c2cd5d3df76ae (diff)
downloadmpv-1627b0fb417b2387198474ca87fa548e390d1313.tar.bz2
mpv-1627b0fb417b2387198474ca87fa548e390d1313.tar.xz
Replace $() by the slightly more portable ``.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20398 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure b/configure
index 9f8d17f539..8c2be3783f 100755
--- a/configure
+++ b/configure
@@ -3749,8 +3749,8 @@ EOF
_dfb_major=`echo $_directfb_version | cut -d . -f 1`
_dfb_minor=`echo $_directfb_version | cut -d . -f 2`
_dfb_micro=`echo $_directfb_version | cut -d . -f 3`
- _dfb_version=$(dfb_version $_dfb_major $_dfb_minor $_dfb_micro)
- if test "$_dfb_version" -ge $(dfb_version 0 9 13); then
+ _dfb_version=`dfb_version $_dfb_major $_dfb_minor $_dfb_micro`
+ if test "$_dfb_version" -ge `dfb_version 0 9 13`; then
_def_directfb_version="#define DIRECTFBVERSION $_dfb_version"
_res_comment="$_directfb_version"
else
@@ -3767,7 +3767,7 @@ echores "$_directfb"
if test "$_directfb" = yes ; then
_def_directfb='#define HAVE_DIRECTFB 1'
- if test "$_dfb_version" -ge $(dfb_version 0 9 13); then
+ if test "$_dfb_version" -ge `dfb_version 0 9 13`; then
_vosrc="$_vosrc vo_directfb2.c"
_vomodules="directfb $_vomodules"
_ld_directfb='-ldirectfb'
@@ -3775,7 +3775,7 @@ if test "$_directfb" = yes ; then
_novomodules="directfb $_novomodules"
fi
- if test "$_dfb_version" -ge $(dfb_version 0 9 15); then
+ if test "$_dfb_version" -ge `dfb_version 0 9 15`; then
_vosrc="$_vosrc vo_dfbmga.c"
_vomodules="dfbmga $_vomodules"
_def_dfbmga='#define HAVE_DFBMGA 1'