Skip to content

Commit

Permalink
fix(build): Don't include build *.so modules in dist
Browse files Browse the repository at this point in the history
  • Loading branch information
alerque committed Feb 3, 2020
1 parent a4e9f03 commit 4eb2a73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ SUPPORTED_LUAS = 5.3 5.2 5.1

dist_man_MANS = sile.1
bin_SCRIPTS = sile
nobase_dist_pkgdata_DATA = $(shell find core classes languages packages lua-libraries -type f -print)
nobase_dist_pkgdata_DATA = $(filter-out %.so,$(shell find core classes languages packages lua-libraries -type f -print))
EXTRA_DIST = CHANGELOG.md README.md LICENSE spec tests examples documentation sile-dev-1.rockspec build-aux/git-version-gen .version fontconfig.conf
EXTRA_DIST += $(extra_dist)

Expand Down

0 comments on commit 4eb2a73

Please sign in to comment.