Skip to content

Commit

Permalink
Fix make install
Browse files Browse the repository at this point in the history
  • Loading branch information
nzbr committed May 15, 2019
1 parent 8cb05a4 commit 9ae1fb8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ZIP=zip -0 -q
PYLINT=pylint -E
PYC=$(PY) -c "from py_compile import compile; from sys import argv; compile(argv[1], cfile=argv[1]+'c', doraise=True, optimize=2)"

DESTDIR=/usr/bin
DESTDIR=/usr
PREFIX=$(DESTDIR)

NAME=pandocode
Expand Down Expand Up @@ -47,6 +47,6 @@ check : dist
@zip -T $(OUT).zip

install : dist
@printf " INST\t$(OUT) => $(PREFIX)/$(NAME)\n"
@install -m 755 $(OUT) $(PREFIX)/$(NAME)
@printf " INST\t$(OUT) => $(PREFIX)/bin/$(NAME)\n"
@install -D -m 755 $(OUT) $(PREFIX)/bin/$(NAME)

0 comments on commit 9ae1fb8

Please sign in to comment.