From 5092595835461e889fbac14d4cfc6c06b5f55019 Mon Sep 17 00:00:00 2001 From: William Hubbs Date: Sun, 9 Sep 2012 22:22:15 -0500 Subject: add RC_PREFIX environment variable This will be used by init scripts which want to be able to run in a Gentoo Prefix installation. RC_PREFIX will contain the prefix offset. --- src/rc/rc-misc.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/rc') diff --git a/src/rc/rc-misc.c b/src/rc/rc-misc.c index 27397d71..e8f6ca6e 100644 --- a/src/rc/rc-misc.c +++ b/src/rc/rc-misc.c @@ -191,6 +191,10 @@ env_config(void) if (sys) setenv("RC_SYS", sys, 1); +#ifdef PREFIX + setenv("RC_PREFIX", RC_PREFIX, 1); +#endif + /* Some scripts may need to take a different code path if Linux/FreeBSD, etc To save on calling uname, we store it in an environment variable */ -- cgit v1.2.3