Skip to content

Commit

Permalink
Don't forcefully try to package something we made building optional
Browse files Browse the repository at this point in the history
  • Loading branch information
alerque committed Jun 30, 2020
1 parent 2243702 commit 871aff4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ install-dist: fonts | $(DISTDIR)
install -Dm644 -t "$(DISTDIR)/static/WOFF/" $(STATICWOFFS)
install -Dm644 -t "$(DISTDIR)/static/WOFF2/" $(STATICWOFF2S)
ifeq ($(CANONICAL),glyphs)
install -Dm644 -t "$(DISTDIR)/variable/OTF/" $(VARIABLEOTFS)
$(and $(wildcard $(VARIABLEOTFS)),install -Dm644 -t "$(DISTDIR)/variable/OTF/" $(VARIABLEOTFS))
install -Dm644 -t "$(DISTDIR)/variable/TTF/" $(VARIABLETTFS)
install -Dm644 -t "$(DISTDIR)/variable/WOFF/" $(VARIABLEWOFFS)
install -Dm644 -t "$(DISTDIR)/variable/WOFF2/" $(VARIABLEWOFF2S)
Expand All @@ -290,7 +290,7 @@ install-local: install-local-otf
install-local-otf: otf # variable-otf
install -Dm644 -t "$${HOME}/.local/share/fonts/OTF/" $(STATICOTFS)
ifeq ($(CANONICAL),glyphs)
install -Dm644 -t "$${HOME}/.local/share/fonts/variable/" $(VARIABLEOTFS)
$(and $(wildcard $(VARIABLEOTFS)),install -Dm644 -t "$${HOME}/.local/share/fonts/variable/" $(VARIABLEOTFS))
endif

install-local-ttf: ttf variable-ttf
Expand Down

0 comments on commit 871aff4

Please sign in to comment.