Skip to content

Commit

Permalink
Makefile: fix a bug
Browse files Browse the repository at this point in the history
  • Loading branch information
drygdryg committed Oct 20, 2020
1 parent ee77156 commit 65cc8bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ $(TARGET): $(SOURCE)
nimble uninstall -y argparse

install: $(TARGET)
install -d $(DESTDIR)$(BINDIR)
install -m 755 $< $(DESTDIR)$(BINDIR)
install -d $(BINDIR)
install -m 755 $< $(BINDIR)

uninstall:
rm $(BINDIR)/$(TARGET)
Expand Down

0 comments on commit 65cc8bf

Please sign in to comment.