2007-09-23 08:04:49 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2010-09-02 11:12:37 +00:00
|
|
|
## live-build(7) - System Build Scripts
|
2015-01-04 18:05:39 -01:00
|
|
|
## Copyright (C) 2006-2015 Daniel Baumann <mail@daniel-baumann.ch>
|
2010-09-02 11:12:37 +00:00
|
|
|
##
|
2012-07-29 23:59:00 +00:00
|
|
|
## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
|
2010-09-02 11:12:37 +00:00
|
|
|
## This is free software, and you are welcome to redistribute it
|
|
|
|
## under certain conditions; see COPYING for details.
|
|
|
|
|
|
|
|
|
2020-02-21 21:23:40 -01:00
|
|
|
PROGRAM_NAME="live-build"
|
|
|
|
PROGRAM="lb"
|
2012-07-19 17:37:26 +00:00
|
|
|
VERSION="$(if [ -e ${LIVE_BUILD}/VERSION ]; then cat ${LIVE_BUILD}/VERSION; else cat /usr/share/live/build/VERSION; fi)"
|
2009-09-11 09:50:08 +00:00
|
|
|
CONFIG_VERSION="$(echo ${VERSION} | awk -F- '{ print $1 }')"
|
2008-09-17 09:07:44 +00:00
|
|
|
|
2012-12-19 07:49:06 -01:00
|
|
|
# FIXME
|
2012-12-19 09:21:28 -01:00
|
|
|
LIVE_BUILD_VERSION="${CONFIG_VERSION}"
|
2012-12-19 07:49:06 -01:00
|
|
|
|
2012-10-22 17:20:12 +00:00
|
|
|
PATH="${PWD}/local/bin:${PATH}"
|