From f940ffad2bc61bc1f7f14340f4142d14f9712c65 Mon Sep 17 00:00:00 2001 From: brian Date: Wed, 23 Jul 2008 16:54:05 +0000 Subject: [PATCH] b=16437 i=yibin.wang i=sheng.yang Don't require that the kenrel config file exist for patchless client builds. Build ppc64 targets for both SLES10 and RHEL5. --- build/lbuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build/lbuild b/build/lbuild index 354a022..020501b 100755 --- a/build/lbuild +++ b/build/lbuild @@ -477,8 +477,10 @@ load_target() local lnxrelnew=${lnxrel//-/_} - [ -f "$CONFIG_FILE" ] || \ + if ! $PATCHLESS && [ ! -f "$CONFIG_FILE" ]; then fatal 1 "Config file for target $TARGET missing from $TOPDIR/lustre/lustre/kernel_patches/kernel_configs/." + fi + if [ "$EXTRA_VERSION_save" ] ; then EXTRA_VERSION="$EXTRA_VERSION_save" elif ! $RELEASE; then -- 1.8.3.1