Make it possible to give different CONF.sh files to build.sh.
This commit is contained in:
parent
ffa69860a8
commit
3ec0227ca8
5
build.sh
5
build.sh
|
@ -2,7 +2,10 @@
|
|||
|
||||
# Script to build one arch
|
||||
|
||||
. CONF.sh
|
||||
if [ -z "$CF" ] ; then
|
||||
CF=CONF.sh
|
||||
fi
|
||||
. $CF
|
||||
|
||||
if [ -n "$1" ] ; then
|
||||
export ARCH=$1
|
||||
|
|
|
@ -57,6 +57,7 @@ debian-cd (2.2.18) UNRELEASED; urgency=low
|
|||
- Try to create $(OUT) instead of just bailing out if it is missing.
|
||||
- Missing b-f documentation is not a fatal error. Keep
|
||||
building if it is missing.
|
||||
- Make it possible to give different CONF.sh files to build.sh.
|
||||
* Stephen R. Marenka
|
||||
- Update m68k support for sarge.
|
||||
- Fix m68k/amiga icons.
|
||||
|
|
Loading…
Reference in New Issue