Skip to content

Commit

Permalink
po/Makefile: Modern shell scripting (use $() instead of ``)
Browse files Browse the repository at this point in the history
Various shell files contain a mix between obsolete ``
and modern $(); It would be nice to convert to using $()
everywhere.

Signed-off-by: Mao Zhongyi <[email protected]>
Reviewed-by: Thomas Huth <[email protected]>
Signed-off-by: Thomas Huth <[email protected]>
  • Loading branch information
Mao Zhongyi authored and huth committed Oct 24, 2018
1 parent b91068c commit ba27877
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion po/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ba27877

Please sign in to comment.