aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Kacur <jkacur@redhat.com>2010-03-24 18:26:24 -0400
committerJohn Kacur <jkacur@redhat.com>2010-03-24 18:50:11 -0400
commit81356ce3713f933d9080649edff3ee1f80aada4b (patch)
treea21f0030e7d92963f3bb4a826a716d0fd998a0f8
parent6667e73489d092fc0393747cce958d92b837f5ef (diff)
trace-cmd: Make the default value of prefix /usr/local
Make the default value of prefix /usr/local which makes sense for most end-users Developers who wish to use $HOME can set this on the command line. (use ?= which only sets the default if prefix doesn't already have a value) Signed-off-by: John Kacur <jkacur@redhat.com>
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 6d47e73..f26e6c0 100644
--- a/Makefile
+++ b/Makefile
@@ -18,7 +18,7 @@ AR = ar
18EXT = -std=gnu99 18EXT = -std=gnu99
19INSTALL = install 19INSTALL = install
20 20
21prefix := $(HOME) 21prefix ?= /usr/local
22bindir_relative = bin 22bindir_relative = bin
23bindir = $(prefix)/$(bindir_relative) 23bindir = $(prefix)/$(bindir_relative)
24 24