Skip to content

Commit

Permalink
Fix make install failing on non-existing docs/*.txt
Browse files Browse the repository at this point in the history
c88941a removed the last .txt file in
docs/. So now `make install` fails when trying to install docs/*.txt
  • Loading branch information
knielsen committed Jun 1, 2017
1 parent 80d517b commit eb4b134
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ install: libs apps
install docs/man/*.1 $(DESTDIR)$(mandir)/man1

install -d $(DESTDIR)$(docdir)
install README COPYING CHANGES docs/*.txt $(DESTDIR)$(docdir)
install README COPYING CHANGES $(DESTDIR)$(docdir)

tarball:
bash scripts/archive.sh
Expand Down

0 comments on commit eb4b134

Please sign in to comment.