build: use backquote rather then $()

It's more portable.

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Julien Danjou 2009-01-16 16:39:23 +01:00
parent b3c71a87e4
commit 8d61619be9
1 changed files with 1 additions and 1 deletions

View File

@ -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