Skip to content

Commit

Permalink
Redirect directory path prefix to '/usr/local' (#6)
Browse files Browse the repository at this point in the history
Avoid installing in /usr/ : This is not correct for some machines (MacOS for instance).
  • Loading branch information
ferologics authored and wichtounet committed Sep 4, 2018
1 parent c187659 commit cf59522
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 @@ -28,7 +28,7 @@ sonar: release
cppcheck --xml-version=2 --enable=all --std=c++11 src include 2> cppcheck_report.xml
/opt/sonar-runner/bin/sonar-runner

prefix = /usr
prefix = /usr/local
bindir = $(prefix)/bin
mandir = $(prefix)/share/man

Expand All @@ -38,7 +38,7 @@ install: release_debug
@ echo ""
install budget.man $(mandir)/man3/budget.3
install release_debug/bin/budget $(bindir)/budget
install completions/bash $(prefix)/../etc/bash_completion.d/budget
install completions/bash $(prefix)/etc/bash_completion.d/budget
install completions/zsh $(prefix)/share/zsh/site-functions/_budget

clean: base_clean
Expand Down

0 comments on commit cf59522

Please sign in to comment.