wrong sourcing of build.sh with a local live-build branch
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
live-build (Ubuntu) |
New
|
Undecided
|
Unassigned |
Bug Description
$ lsb_release -rd
Description: Ubuntu 13.10
Release: 13.10
$ apt-cache policy live-build
live-build:
Installed: 3.0~a57-1ubuntu9
Candidate: 3.0~a57-1ubuntu9
Version table:
*** 3.0~a57-1ubuntu9 0
500 http://
100 /var/lib/
Most live-build scripts include the following line:
( . "${LIVE_
but that line fails to source build.sh and all the functions file from the local live-build branch hence builds stop with a syntax error when evaluating "Echo".
That line on upstream repo is instead implemented with:
[ -e "${LIVE_
which works correctly in both cases.