2007-12-22 07:34:38 -01:00
|
|
|
#!/bin/sh
|
|
|
|
|
2010-09-02 11:12:37 +00:00
|
|
|
## live-build(7) - System Build Scripts
|
|
|
|
## Copyright (C) 2006-2010 Daniel Baumann <daniel@debian.org>
|
|
|
|
##
|
|
|
|
## live-build comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
|
|
|
|
## This is free software, and you are welcome to redistribute it
|
|
|
|
## under certain conditions; see COPYING for details.
|
|
|
|
|
2007-12-22 07:34:38 -01:00
|
|
|
|
2010-09-02 11:22:22 +00:00
|
|
|
LH_BASE="${PWD}/live-build"
|
2007-12-22 07:34:38 -01:00
|
|
|
PATH="${LH_BASE}/helpers:${PATH}"
|
|
|
|
|
|
|
|
export LH_BASE PATH
|
|
|
|
|
|
|
|
if [ ! -z "${1}" ]
|
|
|
|
then
|
2010-09-02 13:14:29 +00:00
|
|
|
exec lb "${@}"
|
2007-12-22 07:34:38 -01:00
|
|
|
fi
|