Skip to content

Commit

Permalink
Fix make dist by explicitly marking "scripts/" as not a language dir
Browse files Browse the repository at this point in the history
  • Loading branch information
stloeffler committed Feb 29, 2020
1 parent 1e23412 commit 2a3b975
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
LANGS = $(patsubst %/,manual-%,$(wildcard */))
LANGS = $(patsubst %/,manual-%,$(filter-out scripts/,$(wildcard */)))
DISTLANGS = $(patsubst manual-%,dist-%,$(LANGS))
CLEANLANGS = $(patsubst manual-%,clean-%,$(LANGS))
DISTCLEANLANGS = $(patsubst manual-%,dist-clean-%,$(LANGS))
Expand Down

0 comments on commit 2a3b975

Please sign in to comment.