2007-12-22 07:34:38 -01:00
|
|
|
#!/bin/sh
|
|
|
|
|
2010-09-02 11:12:37 +00:00
|
|
|
## live-build(7) - System Build Scripts
|
2012-02-04 19:41:41 -01:00
|
|
|
## Copyright (C) 2006-2012 Daniel Baumann <daniel@debian.org>
|
2010-09-02 11:12:37 +00:00
|
|
|
##
|
|
|
|
## 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-07 13:11:20 +00:00
|
|
|
LB_BASE="${PWD}/live-build"
|
2010-09-12 18:44:33 +00:00
|
|
|
PATH="${LB_BASE}/scripts/build:${PATH}"
|
2007-12-22 07:34:38 -01:00
|
|
|
|
2010-09-07 13:11:20 +00:00
|
|
|
export LB_BASE PATH
|
2007-12-22 07:34:38 -01:00
|
|
|
|
|
|
|
if [ ! -z "${1}" ]
|
|
|
|
then
|
2010-09-02 13:14:29 +00:00
|
|
|
exec lb "${@}"
|
2007-12-22 07:34:38 -01:00
|
|
|
fi
|