From nobody Thu Nov 6 08:40:04 2025 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) client-ip=208.118.235.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org Return-Path: Received: from lists.gnu.org (208.118.235.17 [208.118.235.17]) by mx.zohomail.com with SMTPS id 1539769586888685.0644646431798; Wed, 17 Oct 2018 02:46:26 -0700 (PDT) Received: from localhost ([::1]:34978 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gCiP9-0003HI-CO for importer@patchew.org; Wed, 17 Oct 2018 05:46:15 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47278) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gCiNU-0002Ig-6l for qemu-devel@nongnu.org; Wed, 17 Oct 2018 05:44:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gCiNO-0004xK-CC for qemu-devel@nongnu.org; Wed, 17 Oct 2018 05:44:31 -0400 Received: from cmccmta1.chinamobile.com ([221.176.66.79]:25823) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gCiNN-0004rm-Ff for qemu-devel@nongnu.org; Wed, 17 Oct 2018 05:44:26 -0400 Received: from spf.mail.chinamobile.com (unknown[172.16.121.3]) by rmmx-syy-dmz-app01-12001 (RichMail) with SMTP id 2ee15bc7046fccf-8d8e5; Wed, 17 Oct 2018 17:44:16 +0800 (CST) Received: from localhost.localdomain (unknown[112.25.154.149]) by rmsmtp-syy-appsvr02-12002 (RichMail) with SMTP id 2ee25bc70468719-372ad; Wed, 17 Oct 2018 17:44:15 +0800 (CST) X-RM-TRANSID: 2ee15bc7046fccf-8d8e5 X-RM-TagInfo: emlType=0 X-RM-SPAM-FLAG: 00000000 X-RM-TRANSID: 2ee25bc70468719-372ad From: Mao Zhongyi To: qemu-devel@nongnu.org Date: Wed, 17 Oct 2018 17:44:06 +0800 Message-Id: <20181017094406.4844-4-maozhongyi@cmss.chinamobile.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20181017094406.4844-1-maozhongyi@cmss.chinamobile.com> References: <20181017094406.4844-1-maozhongyi@cmss.chinamobile.com> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 221.176.66.79 Subject: [Qemu-devel] [PATCH 3/3] po/Makefile: Modern shell scripting (use $() instead of ``) X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: peter.maydell@linaro.org, thuth@redhat.com, philmd@redhat.com, Mao Zhongyi , sw@weilnetz.de Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" X-ZohoMail: RSF_0 Z_629925259 SPT_0 Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Various shell files contain a mix between obsolete `` and modern $(); It would be nice to convert to using $() everywhere. Cc: philmd@redhat.com Cc: peter.maydell@linaro.org Cc: thuth@redhat.com Cc: sw@weilnetz.de Signed-off-by: Mao Zhongyi --- po/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/Makefile b/po/Makefile index e47e262ee6..10605e8eb3 100644 --- a/po/Makefile +++ b/po/Makefile @@ -36,7 +36,7 @@ clean: =20 install: $(OBJS) for obj in $(OBJS); do \ - base=3D`basename $$obj .mo`; \ + base=3D$(basename $$obj .mo); \ $(INSTALL) -d $(DESTDIR)$(prefix)/share/locale/$$base/LC_MESSAGES; \ $(INSTALL) -m644 $$obj $(DESTDIR)$(prefix)/share/locale/$$base/LC_MES= SAGES/qemu.mo; \ done --=20 2.17.1