summaryrefslogtreecommitdiffstats
path: root/lib/load.sh
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2013-06-15 16:57:02 (EDT)
committer P. J. McDermott <pjm@nac.net>2013-06-15 16:57:02 (EDT)
commit443f79077d349db5aa14169a6c5ccf1e4bcd4cf1 (patch)
tree01924a3db679391b6d0494fa869de890028f2eea /lib/load.sh
parenta5bba3e6fc970d6ea91d9679dbeb0c90fcf60b65 (diff)
parent56cc8c00ddebce8c0ccb3cd907ff5a66e7be226b (diff)
Merge branch 'feature/build-system-improvements'.
Diffstat (limited to 'lib/load.sh')
-rw-r--r--lib/load.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/load.sh b/lib/load.sh
index 9a425c1..ac38dbc 100644
--- a/lib/load.sh
+++ b/lib/load.sh
@@ -22,7 +22,7 @@ _OB_LOAD_SM='true'
# The "common" module is used by this and all other modules.
# We have to manually load the "common" module so we can use it in ob_use.
-. '@@LIBOPKBUILD@@/common.sm'
+. '@@PKGLIBDIR@@/common.sm'
ob_use()
{
@@ -35,7 +35,7 @@ ob_use()
return ${?}
fi
- _obu_module='@@LIBOPKBUILD@@'"/${_obu_module}.sm"
+ _obu_module='@@PKGLIBDIR@@'"/${_obu_module}.sm"
if [ -r "${_obu_module}" ]; then
. "${_obu_module}"
else