Skip to content

Commit

Permalink
Add sqlite-devel dependency for Deltacloud master branch.
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Clift committed Dec 26, 2012
1 parent 2766be6 commit a3c0daf
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions bootstrap.sh
Expand Up @@ -168,9 +168,18 @@ if [ "$os" = "f16" -o "$os" = "f17" -o "$os" = "el6" ]; then
fi
fi

# Add Deltacloud build dependencies if needed
if [ "x$SETUP_LOCAL_DELTACLOUD_RELEASE" != "x" ]; then
depends="$depends bison flex libxslt openssl-devel"
depends="$depends readline-devel"

# If the master branch of Deltacloud is requested, we need
# to add sqlite-devel as a dependency. This is because
# Deltacloud added new deps after 1.0.5:
# https://mail-archives.apache.org/mod_mbox/deltacloud-dev/201212.mbox/browser
if [ "x$SETUP_LOCAL_DELTACLOUD_RELEASE" = "xmaster" ]; then
depends="$depends sqlite-devel"
fi
fi

# If we have sudo, we're able to install missing dependencies
Expand Down

0 comments on commit a3c0daf

Please sign in to comment.