build: use backquote rather then $()
It's more portable. Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
parent
b3c71a87e4
commit
8d61619be9
|
@ -13,7 +13,7 @@ test -d "$top_srcdir" || { \
|
|||
codename_stamp="${2-codename-stamp}"
|
||||
|
||||
if test -f "$top_srcdir/$codename_stamp"; then # dist source tree
|
||||
echo \"$(cat "$top_srcdir/$codename_stamp" | ${TR-tr} -d '\012')\"
|
||||
echo \"`cat "$top_srcdir/$codename_stamp" | ${TR-tr} -d '\012'`\"
|
||||
else
|
||||
echo \""Productivity Breaker"\" | ${TR-tr} -d '\012'
|
||||
fi
|
||||
|
|
Loading…
Reference in New Issue