Skip to content

Commit

Permalink
build: convert last implicit rule to explicit
Browse files Browse the repository at this point in the history
...and drop SUFFIXES.  .jsx wasn't used by anything.
  • Loading branch information
allisonkarlitskaya committed Feb 28, 2022
1 parent 6d7a49f commit 46c8c2a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
5 changes: 0 additions & 5 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,6 @@ clean-local::
find $(builddir) -name '*.gc??' -delete
find $(srcdir) -name '*.pyc' -delete

SUFFIXES = \
.jsx \
.mo .po \
$(NULL)

# Webpack related
include pkg/build

Expand Down
2 changes: 1 addition & 1 deletion po/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ src/ws/%.po: po/%.po
msggrep `$(FILTER_PO_SRC_WS)` $< > $@.tmp && mv $@.tmp $@

# Build a binary mo file from po
.po.mo:
%.mo: %.po
$(AM_V_GEN) mkdir -p $(dir $@) && \
msgfmt -o $@.tmp $< && mv $@.tmp $@ && touch $@

Expand Down

0 comments on commit 46c8c2a

Please sign in to comment.