Skip to content

Commit

Permalink
chore(build): Fixup make dist to run configured without developer mode
Browse files Browse the repository at this point in the history
  • Loading branch information
alerque committed Oct 14, 2023
1 parent 5248b0c commit 42b64bb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,10 @@ dist: sile-$(VERSION).pdf sile-$(VERSION).md
sile-$(VERSION).pdf: $(MANUAL)
cp $(MANUAL) $@

sile-%.md: CHANGELOG.md
$(SED) -e '/\.\.\.v$*/,/\.\.\.v/!d' CHANGELOG.md | \
$(SED) -e '1,3d;N;$$!P;$$!D;$$d' > $@

check: selfcheck

.PHONY: selfcheck
Expand Down Expand Up @@ -203,10 +207,6 @@ release-preview:

release: tagrelease

sile-%.md: CHANGELOG.md
$(SED) -e '/\.\.\.v$*/,/\.\.\.v/!d' CHANGELOG.md | \
$(SED) -e '1,3d;N;$$!P;$$!D;$$d' > $@

update_libtexpdf:
$(GIT) diff-index --quiet --cached HEAD || exit 1 # die if anything already staged
$(GIT) submodule update --init --remote -- libtexpdf
Expand Down

0 comments on commit 42b64bb

Please sign in to comment.