Dropping lb prefix from live-build scripts, not needed anymore.

Previously, we needed to keep the lb_* prefix as the scripts
could also be executed standalone. Since the lb wrapper is
mandatory since squeeze, we can drop this now.
This commit is contained in:
Daniel Baumann 2012-08-27 15:59:56 +02:00
parent d6e45a3437
commit a0a5bbfd1c
68 changed files with 2 additions and 2 deletions

4
bin/lb
View File

@ -40,7 +40,7 @@ case "${1}" in
;;
*)
COMMAND="lb_${1}"
COMMAND="${1}"
shift
ENV=""
@ -74,7 +74,7 @@ case "${1}" in
exit 1
fi
Echo "[%s] %s" "$(date +'%F %T')" "${COMMAND} $(echo ${@})"
Echo "[%s] %s" "$(date +'%F %T')" "lb ${COMMAND} $(echo ${@})"
${ENV} exec "${SCRIPT}" "${@}"
;;
esac