Skip to content

Commit

Permalink
Change Make prefix from /usr/local to /usr
Browse files Browse the repository at this point in the history
/usr/local is "correct" but it's nicer to just use /usr everywhere, in
packages and installed via `make install`.
  • Loading branch information
evan-goode committed May 15, 2024
1 parent 498702f commit 25f385a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
prefix ?= /usr/local
prefix ?= /usr
.DEFAULT_GOAL := build

prebuild:
Expand Down
2 changes: 1 addition & 1 deletion example/drasl.service
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ After=network-online.target

[Service]
DynamicUser=true
ExecStart=/usr/local/bin/drasl
ExecStart=/usr/bin/drasl
StateDirectory=drasl
Restart=always

Expand Down

0 comments on commit 25f385a

Please sign in to comment.