summaryrefslogtreecommitdiffstats
path: root/src/ob-buildenv.sh
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2018-12-22 23:50:13 (EST)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2018-12-22 23:50:13 (EST)
commit719a4eb167b15e0d4c81302e539f0cb847d444b8 (patch)
treed5e242b7e6b9510edc36fc4adbdbd1d59d04d364 /src/ob-buildenv.sh
parentcc339be0fe4965cb52629eb0d4fdc43de7fc5c65 (diff)
opkbuild, ob-*: Use variables set by shpp
Diffstat (limited to 'src/ob-buildenv.sh')
-rw-r--r--src/ob-buildenv.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ob-buildenv.sh b/src/ob-buildenv.sh
index 8f07f8c..70f87a7 100644
--- a/src/ob-buildenv.sh
+++ b/src/ob-buildenv.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/>.
-. '@@LIBDATADIR@@/libopkbuild.shso.1'
+. "${LIBDATADIR}/libopkbuild.shso.1"
main()
{
@@ -41,8 +41,8 @@ setup_build_helper()
for dep in $(ob_get_source_parameter 'Build-Depends'); do
unset IFS
ob_parse_dep -p dep_pkg "${dep}" >/dev/null
- if [ -r "@@HELPERDIR@@/${dep_pkg}" ]; then
- . "@@HELPERDIR@@/${dep_pkg}"
+ if [ -r "${HELPERDIR}/${dep_pkg}" ]; then
+ . "${HELPERDIR}/${dep_pkg}"
PATH="${helper_path}:${PATH}"
fi
done