From 265308065cbcd0bed3d0aca9b98ca60bb3777244 Mon Sep 17 00:00:00 2001 From: bp-sawyers Date: Wed, 26 Jun 2013 20:21:49 +0000 Subject: [PATCH] update buildcore.sh to build the new xCAT-OpenStack meta rpm git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@16780 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- buildcore.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/buildcore.sh b/buildcore.sh index e26a13ceb..21e22e892 100755 --- a/buildcore.sh +++ b/buildcore.sh @@ -241,17 +241,19 @@ if [ "$OSNAME" != "AIX" ]; then fi # Build the xCAT and xCATsn rpms for all platforms -for rpmname in xCAT xCATsn; do +for rpmname in xCAT xCATsn xCAT-OpenStack; do #if [ "$EMBED" = "zvm" ]; then break; fi if [[ " $EMBEDBUILD " != *\ $rpmname\ * ]]; then continue; fi if [ $SOMETHINGCHANGED == 1 -o "$BUILDALL" == 1 ]; then # used to be: if $GREP -E "^[UAD] +$rpmname/" $SVNUP; then UPLOAD=1 ORIGFAILEDRPMS="$FAILEDRPMS" if [ "$OSNAME" = "AIX" ]; then + if [ "$rpmname" = "xCAT-OpenStack" ]; then continue; fi # do not bld openstack on aix ./makerpm $rpmname "$EMBED" if [ $? -ne 0 ]; then FAILEDRPMS="$FAILEDRPMS $rpmname"; fi else for arch in x86_64 ppc64 s390x; do + if [ "$rpmname" = "xCAT-OpenStack" -a "$arch" != "x86_64" ]; then continue; fi # only bld openstack for x86_64 for now ./makerpm $rpmname $arch "$EMBED" if [ $? -ne 0 ]; then FAILEDRPMS="$FAILEDRPMS $rpmname-$arch"; fi done