diff options
author | Mao Zhongyi | 2018-10-22 10:48:24 +0200 |
---|---|---|
committer | Thomas Huth | 2018-10-24 08:39:10 +0200 |
commit | ba27877618abcc4906db9a9168dbbb3104c1a3d0 (patch) | |
tree | b88e500934b828fb47206fd43bfb943657cb3850 /po | |
parent | debian-bootstrap.pre: Modern shell scripting (use $() instead of ``) (diff) | |
download | qemu-ba27877618abcc4906db9a9168dbbb3104c1a3d0.tar.gz qemu-ba27877618abcc4906db9a9168dbbb3104c1a3d0.tar.xz qemu-ba27877618abcc4906db9a9168dbbb3104c1a3d0.zip |
po/Makefile: Modern shell scripting (use $() instead of ``)
Various shell files contain a mix between obsolete ``
and modern $(); It would be nice to convert to using $()
everywhere.
Signed-off-by: Mao Zhongyi <maozhongyi@cmss.chinamobile.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'po')
-rw-r--r-- | po/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/po/Makefile b/po/Makefile index e47e262ee6..c041f4c858 100644 --- a/po/Makefile +++ b/po/Makefile @@ -36,7 +36,7 @@ clean: install: $(OBJS) for obj in $(OBJS); do \ - base=`basename $$obj .mo`; \ + base=$$(basename $$obj .mo); \ $(INSTALL) -d $(DESTDIR)$(prefix)/share/locale/$$base/LC_MESSAGES; \ $(INSTALL) -m644 $$obj $(DESTDIR)$(prefix)/share/locale/$$base/LC_MESSAGES/qemu.mo; \ done |