scripts: Use $(..) instead of deprecated ..

This fixes these warnings from shellcheck:

    ^-- SC2006: Use $(..) instead of deprecated `..`

Update also a comment using the same pattern.

Signed-off-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
This commit is contained in:
Stefan Weil 2016-05-16 15:23:33 +02:00 committed by Michael Tokarev
parent 8913885761
commit bbd908025c
6 changed files with 11 additions and 11 deletions

View file

@ -10,7 +10,7 @@
# This work is licensed under the terms of the GNU GPL version 2.
# See the COPYING file in the top-level directory.
tmpdir=`mktemp -d`
tmpdir=$(mktemp -d)
linux="$1"
output="$2"