diff options
author | William Hubbs <williamh@gentoo.org> | 2012-04-26 12:56:44 -0500 |
---|---|---|
committer | William Hubbs <williamh@gentoo.org> | 2012-04-26 12:56:44 -0500 |
commit | 8c82637e76dcc6a076bdc5e17c142ec8999364a1 (patch) | |
tree | 68b96a9d8f12957aedc29a28ed5a746f85f1cb57 /sh/runscript.sh.in | |
parent | 8d63719418de14248bb4bd3b4a0ce5599f8f3092 (diff) |
fix references to functions.sh
There were a couple of places where we were sourcing functions.sh in
@SYSCONFDIR@/init.d. This is only a backward compatibility symlink, so
it should not be used for openrc. The correct place to source this from
is @LIBEXECDIR@/sh.
Diffstat (limited to 'sh/runscript.sh.in')
-rw-r--r-- | sh/runscript.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sh/runscript.sh.in b/sh/runscript.sh.in index bc93b511..6ad2ded3 100644 --- a/sh/runscript.sh.in +++ b/sh/runscript.sh.in @@ -32,7 +32,7 @@ sourcex() fi } -sourcex "@SYSCONFDIR@/init.d/functions.sh" +sourcex "@LIBEXECDIR@/sh/functions.sh" sourcex "@LIBEXECDIR@/sh/rc-functions.sh" # Support LiveCD foo |