From: mjmac Date: Fri, 15 Jul 2005 19:52:29 +0000 (+0000) Subject: r=adilger,nic X-Git-Tag: 1.4.10~867 X-Git-Url: https://git.whamcloud.com/gitweb?a=commitdiff_plain;h=5b0fc6e3bcd93fd46f525cfc8b81ef5e61d54dcd;p=fs%2Flustre-release.git r=adilger,nic stage() should return 0 if $STAGEDIR is not set, not 1. --- diff --git a/build/lbuild b/build/lbuild index c0389a2..07dd85e 100755 --- a/build/lbuild +++ b/build/lbuild @@ -522,7 +522,7 @@ build_lustre() stage() { - [ "$STAGEDIR" ] || return + [ -z "$STAGEDIR" ] && return for arch in $BUILD_ARCHS ; do rpmdir="${STAGEDIR}/${CANONICAL_TARGET}-${arch}"