summaryrefslogtreecommitdiff
path: root/Makeconf
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1995-09-16 17:26:55 +0000
committerRoland McGrath <roland@gnu.org>1995-09-16 17:26:55 +0000
commit5b684caa7cc75f5a12c3bd395503f42b5c3c6355 (patch)
treef2feabdae28ba1ba9b7e0cefbf5c13b7d8a03a6c /Makeconf
parent42b69f65ba6e8ab578d4eecb0503cdb6a9a8befa (diff)
(sbindir): New variable.
(installationdir): Don't set if already set.
Diffstat (limited to 'Makeconf')
-rw-r--r--Makeconf9
1 files changed, 7 insertions, 2 deletions
diff --git a/Makeconf b/Makeconf
index a844330b..f92ecd97 100644
--- a/Makeconf
+++ b/Makeconf
@@ -39,6 +39,7 @@ srcdir := /home/gd4/gnu/hurd
# Where to install things
hurddir := $(exec_prefix)/hurd
bindir := $(exec_prefix)/bin
+sbindir := $(exec_prefix)/sbin
libdir := $(exec_prefix)/lib
infodir := $(prefix)/info
includedir := $(prefix)/include
@@ -60,7 +61,9 @@ endif
ifeq ($(makemode),utility)
doinst := one
- installationdir := $(bindir)
+ ifndef installationdir
+ installationdir := $(bindir)
+ endif
clean := yes
cleantarg := $(target)
endif
@@ -74,7 +77,9 @@ endif
ifeq ($(makemode),utilities)
doinst := many
- installationdir := $(bindir)
+ ifndef installationdir
+ installationdir := $(bindir)
+ endif
clean := yes
cleantarg := $(targets)
endif