diff options
author | Roy Marples <roy@marples.name> | 2008-11-13 09:35:00 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2008-11-13 09:35:00 +0000 |
commit | 1deaa0fae0f5c26f75140fc77963e74091bdd63a (patch) | |
tree | cbc71702dea731f6eec1511e2b529a69103de438 | |
parent | 0cca768b82a3225f82747863e674cae68ab790e1 (diff) |
Fix lib.
-rw-r--r-- | sh/rc-functions.sh.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sh/rc-functions.sh.in b/sh/rc-functions.sh.in index 8408814b..b9ea93d3 100644 --- a/sh/rc-functions.sh.in +++ b/sh/rc-functions.sh.in @@ -20,9 +20,9 @@ import_addon() if [ -e "${RC_LIBDIR}/addons/$1.sh" ]; then _addon_warn . "${RC_LIBDIR}/addons/$1.sh" - elif [ -e /lib64/rcscripts/addons/"$1".sh ]; then + elif [ -e /@LIB@/rcscripts/addons/"$1".sh ]; then _addon_warn - . /lib64/rcscripts/addons/"$1".sh + . /@LIB@/rcscripts/addons/"$1".sh else return 1 fi |