Skip to content
Snippets Groups Projects
Commit 62f71f60 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Add TMPROOT support for two phase building/installing.

	make all
	make TMPROOT=/tmp/root install
will install everything under $(TMPROOT)$(prefix).  Useful for
building bundling packages/ports for various operating systems.
parent 52884a2c
No related branches found
No related tags found
No related merge requests found
...@@ -19,19 +19,19 @@ top_srcdir = @top_srcdir@ ...@@ -19,19 +19,19 @@ top_srcdir = @top_srcdir@
VPATH = @srcdir@ VPATH = @srcdir@
prefix = @prefix@ prefix = @prefix@
exec_prefix = @exec_prefix@ exec_prefix = @exec_prefix@
ldap_subdir = @ldap_subdir@ ldap_subdir = @ldap_subdir@
bindir = @bindir@
datadir = @datadir@/$(ldap_subdir) bindir = $(TMPROOT)@bindir@
includedir = @includedir@ datadir = $(TMPROOT)@datadir@/$(ldap_subdir)
infodir = @infodir@ includedir = $(TMPROOT)@includedir@
libdir = @libdir@ infodir = $(TMPROOT)@infodir@
libexecdir = @libexecdir@ libdir = $(TMPROOT)@libdir@
localstatedir = @localstatedir@ libexecdir = $(TMPROOT)@libexecdir@
mandir = @mandir@ localstatedir = $(TMPROOT)@localstatedir@
sbindir = @sbindir@ mandir = $(TMPROOT)@mandir@
sharedstatedir = @sharedstatedir@ sbindir = $(TMPROOT)@sbindir@
sysconfdir = @sysconfdir@/$(ldap_subdir) sharedstatedir = $(TMPROOT)@sharedstatedir@
sysconfdir = $(TMPROOT)@sysconfdir@/$(ldap_subdir)
EXEEXT = @EXEEXT@ EXEEXT = @EXEEXT@
OBJEXT = @OBJEXT@ OBJEXT = @OBJEXT@
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment