changeset 20383:2760bbeafbed

Replace $() by the slightly more portable ``.
author diego
date Sun, 22 Oct 2006 22:14:08 +0000
parents 5da6924ee654
children ca7be016f8d5
files configure
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/configure	Sun Oct 22 21:19:54 2006 +0000
+++ b/configure	Sun Oct 22 22:14:08 2006 +0000
@@ -3749,8 +3749,8 @@
     _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 @@
 
 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 @@
     _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'