From ef53525970f0d3d9410e8a356fc9170cbead016a Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Thu, 1 Sep 2011 09:27:16 +0200 Subject: Automatically using an embedded live-build copy from within the config tree at local/live-build, if existing. This allows to ship (an almost) self contained config tree. --- scripts/build.sh | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/build.sh b/scripts/build.sh index 443e9eed9..74898d473 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -1,6 +1,14 @@ #!/bin/sh -LB_BASE="${LB_BASE:-/usr/share/live/build}" +if [ -e local/live-build ] +then + LB_BASE="${LB_BASE:-${PWD}/local/live-build}" + PATH="${PWD}/local/live-build/scripts/build:${PATH}" + export LB_BASE PATH +else + LB_BASE="${LB_BASE:-/usr/share/live/build}" + export LB_BASE +fi # Source global functions for FUNCTION in "${LB_BASE}"/functions/*.sh -- cgit v1.2.3