summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Hubbs <w.d.hubbs@gmail.com>2012-08-31 09:22:12 -0500
committerWilliam Hubbs <w.d.hubbs@gmail.com>2012-08-31 10:40:47 -0500
commit9e88d73aaaba93d716ecd49767dfcdf3ffdbff30 (patch)
tree25f26e955406827c3bee4e27bd3d7e467656e88e
parent1f011573544487bab0bee9d2a3d6ffa81c08ff48 (diff)
downloadopenrc-9e88d73aaaba93d716ecd49767dfcdf3ffdbff30.tar.gz
openrc-9e88d73aaaba93d716ecd49767dfcdf3ffdbff30.tar.bz2
openrc-9e88d73aaaba93d716ecd49767dfcdf3ffdbff30.tar.xz
add MKPREFIX flag to build system
This allows building OpenRC for a Gentoo Prefix installation.
-rw-r--r--README3
-rw-r--r--mk/os-prefix.mk6
-rw-r--r--mk/os.mk1
3 files changed, 10 insertions, 0 deletions
diff --git a/README b/README
index 8244b04..2740f54 100644
--- a/README
+++ b/README
@@ -12,6 +12,7 @@ LIBNAME=lib64
DESTDIR=/tmp/openrc-image
MKNET=oldnet
MKPAM=pam
+MKPREFIX=yes
MKPKGCONFIG=no
MKSELINUX=yes
MKSTATICLIBS=no
@@ -25,6 +26,8 @@ We don't support building a static OpenRC with PAM.
You may need to use PROGLDFLAGS=-Wl,-Bstatic on glibc instead of just -static.
If you debug memory under valgrind, add -DDEBUG_MEMORY to your CPPFLAGS
so that all malloc memory should be freed at exit.
+If you are building OpenRC for a Gentoo Prefix installation, add
+MKPREFIX=yes.
You can also brand OpenRC if you so wish like so
BRANDING=\"Gentoo/$(uname -s)\"
diff --git a/mk/os-prefix.mk b/mk/os-prefix.mk
new file mode 100644
index 0000000..94fda96
--- /dev/null
+++ b/mk/os-prefix.mk
@@ -0,0 +1,6 @@
+# Copyright (c) 2012 William Hubbs <w.d.hubbs@gmail.com>
+# Released under the 2-clause BSD license.
+
+ifeq (${MKPREFIX},yes}
+CPPFLAGS+= -DPREFIX
+endif
diff --git a/mk/os.mk b/mk/os.mk
index c306f05..3e18962 100644
--- a/mk/os.mk
+++ b/mk/os.mk
@@ -7,5 +7,6 @@ _OS_SH= uname -s
_OS:= $(shell ${_OS_SH})
OS?= ${_OS}
include ${MK}/os-${OS}.mk
+include ${MK}/os-prefix.mk
RC_LIB= /$(LIBNAME)/rc