summaryrefslogtreecommitdiffstats
path: root/lib/load.sh
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2014-03-01 19:40:11 (EST)
committer P. J. McDermott <pjm@nac.net>2014-03-01 19:40:11 (EST)
commit20c66a1eaef872dbfad4ba82d2ca1c74eb4c9818 (patch)
treebf0f90695808884889e69b83ae898da21a55eccb /lib/load.sh
parentb732112c8e1b99ade1c89fa51ec1683fae05b21c (diff)
parent20223fd13a6fadc7ea5a6519bb72a1e395b43223 (diff)
Merge branch 'feature/autoconf-and-automake'.
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 a21ca52..d537b4b 100644
--- a/lib/load.sh
+++ b/lib/load.sh
@@ -22,7 +22,7 @@ _OH_LOAD_SM=1
# 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 oh_use.
-. '@@PKGLIBDIR@@/common.sm'
+. '@pkgdatadir@/common.sm'
oh_use()
{
@@ -34,7 +34,7 @@ oh_use()
return 125
fi
- module='@@PKGLIBDIR@@'"/${module}.sm"
+ module='@pkgdatadir@'"/${module}.sm"
if [ -r "${module}" ]; then
. "${module}"
else