Skip to content

Commit

Permalink
fix(Makefile): no install rime-emoji/opencc when make all (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
akiirui authored and lotem committed Sep 12, 2019
1 parent 60cddc8 commit c286df2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ install:
install -d $(DESTDIR)$(RIME_DATA_DIR)/build; \
install -m 644 $(OUTPUT)/build/*.* $(DESTDIR)$(RIME_DATA_DIR)/build; \
fi
@if [ -d "$(OUTPUT)/opencc" ]; then \
install -d $(DESTDIR)$(RIME_DATA_DIR)/opencc; \
install -m 644 $(OUTPUT)/opencc/*.* $(DESTDIR)$(RIME_DATA_DIR)/opencc; \
fi

clean:
rm -rf $(OUTPUT) > /dev/null 2>&1 || true
Expand Down

0 comments on commit c286df2

Please sign in to comment.