This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 2.x development tree".
The branch, master has been updated via 823c2183c22c3358a9d8d61b71993676f2c1aa5a (commit) from cd18d4be699a94949e4e5df351465326b8f6ca43 (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit 823c2183c22c3358a9d8d61b71993676f2c1aa5a Author: Christian Schmidt maniacikarus@ipfire.org Date: Sun Apr 25 21:10:32 2010 +0200
Fixed Image build switch.
-----------------------------------------------------------------------
Summary of changes: make.sh | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
Difference in files: diff --git a/make.sh b/make.sh index a36a4a8..693a818 100755 --- a/make.sh +++ b/make.sh @@ -726,7 +726,7 @@ buildpackages() { ipfiremake cdrom ED=$IPFVER
# Check if there is a loop device for building in virtual environments - if [ $BUILD_IMAGES && -e /dev/loop/0 ] || [ -e /dev/loop0 ]; then + if [ $BUILD_IMAGES == 1 ] && ([ -e /dev/loop/0 ] || [ -e /dev/loop0 ]); then ipfiremake usb-stick ED=$IPFVER ipfiremake flash-images ED=$IPFVER fi @@ -736,7 +736,7 @@ buildpackages() { ipfirepackages
# Check if there is a loop device for building in virtual environments - if [ $BUILD_IMAGES && -e /dev/loop/0 ] || [ -e /dev/loop0 ]; then + if [ $BUILD_IMAGES == 1 ] && ([ -e /dev/loop/0 ] || [ -e /dev/loop0 ]); then cp -f $BASEDIR/packages/linux-xen-*.ipfire $LFS/install/packages/ cp -f $BASEDIR/packages/meta-linux-xen $LFS/install/packages/ ipfiremake xen-image ED=$IPFVER
hooks/post-receive -- IPFire 2.x development tree