From: Chris Gianelloni Date: Fri, 8 Jul 2005 15:07:25 +0000 (+0000) Subject: Fixed quoting in stage1 profile check. X-Git-Tag: CATALYST_2_0_6_916~682 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=6234453ea5ed1fd3a3c8bc48834deef9535d427b;p=catalyst.git Fixed quoting in stage1 profile check. git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/catalyst/trunk@777 d1e1f19c-881f-0410-ab34-b69fee027534 --- diff --git a/ChangeLog b/ChangeLog index 883ab726..4edd8385 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.304 2005/07/07 22:19:08 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.305 2005/07/08 15:07:25 wolf31o2 Exp $ + + 08 Jul 2005; Chris Gianelloni + targets/stage1/stage1-chroot.sh: + Fixed quoting in stage1 profile check. 07 Jul 2005; Chris Gianelloni targets/stage3/stage3-chroot.sh: diff --git a/targets/stage1/stage1-chroot.sh b/targets/stage1/stage1-chroot.sh index 2f50b936..cc23b208 100755 --- a/targets/stage1/stage1-chroot.sh +++ b/targets/stage1/stage1-chroot.sh @@ -1,7 +1,7 @@ #!/bin/bash # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo/src/catalyst/targets/stage1/stage1-chroot.sh,v 1.34 2005/07/05 21:53:41 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo/src/catalyst/targets/stage1/stage1-chroot.sh,v 1.35 2005/07/08 15:07:25 wolf31o2 Exp $ . /tmp/chroot-functions.sh @@ -21,7 +21,7 @@ export USE="-* build ${STAGE1_USE}" export FEATURES="${clst_myfeatures}" ## Sanity check profile -if [[ -z ${clst_buildpkgs} ]] +if [ -z "${clst_buildpkgs}" ] then echo "Your profile seems to be broken." echo "Could not build a list of build packages."