Moving local includes from auto/{functions,scripts} to local/{functions,scripts} where they belong.
This commit is contained in:
parent
434307c22d
commit
328222f8c7
|
@ -12,4 +12,4 @@ PROGRAM="live-build"
|
|||
VERSION="$(cat ${LB_BASE}/VERSION)"
|
||||
CONFIG_VERSION="$(echo ${VERSION} | awk -F- '{ print $1 }')"
|
||||
|
||||
PATH="${PWD}/auto/scripts:${PATH}"
|
||||
PATH="${PWD}/local/scripts:${PATH}"
|
||||
|
|
|
@ -17,9 +17,9 @@ do
|
|||
done
|
||||
|
||||
# Source local functions
|
||||
if ls auto/functions/* > /dev/null 2>&1
|
||||
if ls local/functions/* > /dev/null 2>&1
|
||||
then
|
||||
for FUNCTION in auto/functions/*
|
||||
for FUNCTION in local/functions/*
|
||||
do
|
||||
. "${FUNCTION}"
|
||||
done
|
||||
|
|
|
@ -1449,8 +1449,9 @@ LB_SOURCE="${LB_SOURCE}"
|
|||
LB_SOURCE_IMAGES="${LB_SOURCE_IMAGES}"
|
||||
EOF
|
||||
|
||||
mkdir -p auto/functions
|
||||
mkdir -p auto/scripts
|
||||
mkdir -p auto
|
||||
mkdir -p local/functions
|
||||
mkdir -p local/scripts
|
||||
|
||||
if [ "${CONFIG}" = "clone" ] # FIXME
|
||||
then
|
||||
|
@ -1475,9 +1476,10 @@ then
|
|||
# Remove empty directories in config tree
|
||||
rmdir --ignore-fail-on-non-empty config/*/ > /dev/null 2>&1 || true
|
||||
rmdir --ignore-fail-on-non-empty config > /dev/null 2>&1 || true
|
||||
rmdir --ignore-fail-on-non-empty auto/functions > /dev/null 2>&1 || true
|
||||
rmdir --ignore-fail-on-non-empty auto/scripts > /dev/null 2>&1 || true
|
||||
rmdir --ignore-fail-on-non-empty auto > /dev/null 2>&1 || true
|
||||
rmdir --ignore-fail-on-non-empty local/functions > /dev/null 2>&1 || true
|
||||
rmdir --ignore-fail-on-non-empty local/scripts > /dev/null 2>&1 || true
|
||||
rmdir --ignore-fail-on-non-empty local > /dev/null 2>&1 || true
|
||||
fi
|
||||
|
||||
# Creating stage file
|
||||
|
|
Loading…
Reference in New Issue