Skip to content

Commit

Permalink
Tell install to create $(BINDIR) if it doesn't exist
Browse files Browse the repository at this point in the history
See issue schnaader#68
  • Loading branch information
schnaader committed Oct 29, 2017
1 parent 8841ab3 commit 22922c3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile.osx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ clean:

.PHONY: install
install: contrib $(PROGNAME)
install -m 555 ./precomp $(BINDIR)
install -d $(BINDIR)
install -m 555 precomp $(BINDIR)

bzip2:
make -C contrib/bzip2
Expand Down

0 comments on commit 22922c3

Please sign in to comment.