From nobody Thu Nov 6 08:28:17 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 (lists.gnu.org [208.118.235.17]) by mx.zohomail.com with SMTPS id 15398327774941011.7203687255278; Wed, 17 Oct 2018 20:19:37 -0700 (PDT) Received: from localhost ([::1]:39992 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gCyqP-0005rA-7e for importer@patchew.org; Wed, 17 Oct 2018 23:19:29 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43720) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gCyod-000536-NY for qemu-devel@nongnu.org; Wed, 17 Oct 2018 23:17:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gCyoZ-0001Cu-0W for qemu-devel@nongnu.org; Wed, 17 Oct 2018 23:17:39 -0400 Received: from cmccmta3.chinamobile.com ([221.176.66.81]:25208) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gCyoY-000190-AB for qemu-devel@nongnu.org; Wed, 17 Oct 2018 23:17:34 -0400 Received: from spf.mail.chinamobile.com (unknown[172.16.121.3]) by rmmx-syy-dmz-app10-12010 (RichMail) with SMTP id 2eea5bc7fb4c595-9c898; Thu, 18 Oct 2018 11:17:32 +0800 (CST) Received: from localhost.localdomain (unknown[112.25.154.149]) by rmsmtp-syy-appsvr02-12002 (RichMail) with SMTP id 2ee25bc7fb45a2e-7c414; Thu, 18 Oct 2018 11:17:32 +0800 (CST) X-RM-TRANSID: 2eea5bc7fb4c595-9c898 X-RM-TagInfo: emlType=0 X-RM-SPAM-FLAG: 00000000 X-RM-TRANSID: 2ee25bc7fb45a2e-7c414 From: Mao Zhongyi To: qemu-devel@nongnu.org Date: Thu, 18 Oct 2018 11:17:23 +0800 Message-Id: <20181018031723.23459-4-maozhongyi@cmss.chinamobile.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20181018031723.23459-1-maozhongyi@cmss.chinamobile.com> References: <20181018031723.23459-1-maozhongyi@cmss.chinamobile.com> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 221.176.66.81 Subject: [Qemu-devel] [PATCH v2 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 Signed-off-by: Thomas Huth --- po/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/Makefile b/po/Makefile index e47e262ee6..c041f4c858 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