mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
po/Makefile: removed && between commands
It is not necessary: when a rule has multiple commands in it, GNU Make (which ELinks requires anyway) runs them one at a time, regardless of the -j option, and skips the remaining commands when one of them fails, regardless of the -k option. These options take effect at the level of targets rather than individual commands.
This commit is contained in:
parent
8bd7d6b61a
commit
38779902a0
@ -78,10 +78,10 @@ $(srcdir)$(PACKAGE).pot: $(POTFILES_ABS_LIST) $(srcdir)perl/msgaccel-prepare
|
|||||||
--flag=_:1:pass-c-format --flag=N_:1:pass-c-format \
|
--flag=_:1:pass-c-format --flag=N_:1:pass-c-format \
|
||||||
--flag=n_:1:pass-c-format --flag=n_:2:pass-c-format \
|
--flag=n_:1:pass-c-format --flag=n_:2:pass-c-format \
|
||||||
--flag=N__:1:pass-c-format \
|
--flag=N__:1:pass-c-format \
|
||||||
-f $(POTFILES_ABS_LIST) \
|
-f $(POTFILES_ABS_LIST)
|
||||||
&& test -f $(PACKAGE).po \
|
test -f $(PACKAGE).po
|
||||||
&& $(PERL) -I"$(srcdir)perl" $(srcdir)perl/msgaccel-prepare -S"$(top_srcdir)" $(PACKAGE).po \
|
$(PERL) -I"$(srcdir)perl" $(srcdir)perl/msgaccel-prepare -S"$(top_srcdir)" $(PACKAGE).po
|
||||||
&& mv -f $(PACKAGE).po $(srcdir)$(PACKAGE).pot
|
mv -f $(PACKAGE).po $(srcdir)$(PACKAGE).pot
|
||||||
|
|
||||||
|
|
||||||
### Updating po and gmo files
|
### Updating po and gmo files
|
||||||
|
Loading…
Reference in New Issue
Block a user