configure: use `foo` instead of $(foo)
authorJens Axboe <axboe@kernel.dk>
Tue, 26 Feb 2013 20:55:08 +0000 (21:55 +0100)
committerJens Axboe <axboe@kernel.dk>
Tue, 26 Feb 2013 20:55:08 +0000 (21:55 +0100)
Seems to work everywhere, whereas $(foo) does not work on
some variants of FreeBSD.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
configure

index caaf30e05608adfe1e48a2b872ed816ac36a175c..8125fc3ccfb685ae0f8149b191a079121adfbc81 100755 (executable)
--- a/configure
+++ b/configure
@@ -349,7 +349,7 @@ int main(void)
 }
 EOF
 if compile_prog "" "" "wordsize"; then
-  wordsize=$($TMPE)
+  wordsize=`$TMPE`
 fi
 echo "Wordsize                      $wordsize"