summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2013-05-09 14:15:01 (EDT)
committer P. J. McDermott <pjm@nac.net>2013-05-09 14:18:31 (EDT)
commit19b65e13fa6a38be577ecd9d5d604772d77d2748 (patch)
treeaef6b51300d275f1b22169d83773370387736735
parent763a15f4cbd11d4be4eb52da62533cb72d691a12 (diff)
s/@@LIBOPKHELPER@@/@@PKGLIBDIR@@/ in sources.
-rw-r--r--lib/load.sh4
-rw-r--r--src/oh-architecture.sh2
-rw-r--r--src/oh-autobuild.sh2
-rw-r--r--src/oh-autoclean.sh2
-rw-r--r--src/oh-autoconfigure.sh2
-rw-r--r--src/oh-autoinstall.sh2
-rw-r--r--src/oh-autotest.sh2
-rw-r--r--src/oh-fixperms.sh2
-rw-r--r--src/oh-installfiles.sh2
-rw-r--r--src/oh-strip.sh2
10 files changed, 11 insertions, 11 deletions
diff --git a/lib/load.sh b/lib/load.sh
index 0b54f4a..4c3f822 100644
--- a/lib/load.sh
+++ b/lib/load.sh
@@ -22,7 +22,7 @@ _OH_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 oh_use.
-. '@@LIBOPKHELPER@@/common.sm'
+. '@@PKGLIBDIR@@/common.sm'
# Assume that every library module and utility uses libopkbuild.
. '@@LIBOPKBUILD_1@@/load.sm'
@@ -38,7 +38,7 @@ oh_use()
return ${?}
fi
- _ohu_module='@@LIBOPKHELPER@@'"/${_ohu_module}.sm"
+ _ohu_module='@@PKGLIBDIR@@'"/${_ohu_module}.sm"
if [ -r "${_ohu_module}" ]; then
. "${_ohu_module}"
else
diff --git a/src/oh-architecture.sh b/src/oh-architecture.sh
index 113854f..b026185 100644
--- a/src/oh-architecture.sh
+++ b/src/oh-architecture.sh
@@ -19,7 +19,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
-. '@@LIBOPKHELPER@@/load.sm'
+. '@@PKGLIBDIR@@/load.sm'
oh_use buildsystem
diff --git a/src/oh-autobuild.sh b/src/oh-autobuild.sh
index 3bf2026..c85dd0f 100644
--- a/src/oh-autobuild.sh
+++ b/src/oh-autobuild.sh
@@ -19,7 +19,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
-. '@@LIBOPKHELPER@@/load.sm'
+. '@@PKGLIBDIR@@/load.sm'
oh_use buildsystem
diff --git a/src/oh-autoclean.sh b/src/oh-autoclean.sh
index f12815b..cf9c8d3 100644
--- a/src/oh-autoclean.sh
+++ b/src/oh-autoclean.sh
@@ -19,7 +19,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
-. '@@LIBOPKHELPER@@/load.sm'
+. '@@PKGLIBDIR@@/load.sm'
oh_use buildsystem
diff --git a/src/oh-autoconfigure.sh b/src/oh-autoconfigure.sh
index d363278..3e37228 100644
--- a/src/oh-autoconfigure.sh
+++ b/src/oh-autoconfigure.sh
@@ -19,7 +19,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
-. '@@LIBOPKHELPER@@/load.sm'
+. '@@PKGLIBDIR@@/load.sm'
oh_use buildsystem
diff --git a/src/oh-autoinstall.sh b/src/oh-autoinstall.sh
index bd4476a..efe8500 100644
--- a/src/oh-autoinstall.sh
+++ b/src/oh-autoinstall.sh
@@ -19,7 +19,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
-. '@@LIBOPKHELPER@@/load.sm'
+. '@@PKGLIBDIR@@/load.sm'
oh_use buildsystem
diff --git a/src/oh-autotest.sh b/src/oh-autotest.sh
index 371328c..aff0999 100644
--- a/src/oh-autotest.sh
+++ b/src/oh-autotest.sh
@@ -19,7 +19,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
-. '@@LIBOPKHELPER@@/load.sm'
+. '@@PKGLIBDIR@@/load.sm'
oh_use buildsystem
diff --git a/src/oh-fixperms.sh b/src/oh-fixperms.sh
index d8f3886..308e60a 100644
--- a/src/oh-fixperms.sh
+++ b/src/oh-fixperms.sh
@@ -19,7 +19,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
-. '@@LIBOPKHELPER@@/load.sm'
+. '@@PKGLIBDIR@@/load.sm'
main()
{
diff --git a/src/oh-installfiles.sh b/src/oh-installfiles.sh
index c9abd36..9848ca1 100644
--- a/src/oh-installfiles.sh
+++ b/src/oh-installfiles.sh
@@ -19,7 +19,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
-. '@@LIBOPKHELPER@@/load.sm'
+. '@@PKGLIBDIR@@/load.sm'
files_ifs='
'
diff --git a/src/oh-strip.sh b/src/oh-strip.sh
index 96c4d3f..1c21545 100644
--- a/src/oh-strip.sh
+++ b/src/oh-strip.sh
@@ -19,7 +19,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
-. '@@LIBOPKHELPER@@/load.sm'
+. '@@PKGLIBDIR@@/load.sm'
CR='
'