From: Jens Axboe Date: Tue, 26 Feb 2013 20:55:08 +0000 (+0100) Subject: configure: use `foo` instead of $(foo) X-Git-Tag: fio-2.0.15~51 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=b65588b3c0b1007378d64088ef8a0928b7150c15;p=fio.git configure: use `foo` instead of $(foo) Seems to work everywhere, whereas $(foo) does not work on some variants of FreeBSD. Signed-off-by: Jens Axboe --- diff --git a/configure b/configure index caaf30e0..8125fc3c 100755 --- 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"