Skip to content
This repository has been archived by the owner on May 31, 2018. It is now read-only.

Commit

Permalink
fixed config file path in Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
rmarquis committed Dec 12, 2017
1 parent 947e274 commit 63096e4
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 @@ -19,7 +19,7 @@ doc:
# aux
install:
@echo "Installing..."
@install -D -m644 ./config $(DESTDIR)$(PREFIX)/etc/xdg/pacaur/config
@install -D -m644 ./config $(DESTDIR)/etc/xdg/pacaur/config
@install -D -m755 ./pacaur $(DESTDIR)$(PREFIX)/bin/pacaur
@install -D -m644 ./bash.completion $(DESTDIR)$(PREFIX)/share/bash-completion/completions/pacaur
@install -D -m644 ./zsh.completion $(DESTDIR)$(PREFIX)/share/zsh/site-functions/_pacaur
Expand All @@ -32,7 +32,7 @@ install:

uninstall:
@echo "Uninstalling..."
@$(RM) $(DESTDIR)$(PREFIX)/etc/xdg/pacaur/config
@$(RM) $(DESTDIR)/etc/xdg/pacaur/config
@$(RM) $(DESTDIR)$(PREFIX)/bin/pacaur
@$(RM) $(DESTDIR)$(PREFIX)/share/bash-completion/completions/pacaur
@$(RM) $(DESTDIR)$(PREFIX)/share/zsh/site-functions/_pacaur
Expand Down

0 comments on commit 63096e4

Please sign in to comment.