Don't setup swift3 if it's not being used.

"setup_develop" was still being called for swift3, even if it's
not in enabled services.  This wraps that call in an
"is_service_enbled" conditional so that stack.sh doesn't attempt
to set it up if it's not enabled.

- Fixes bug 1021150.

Change-Id: I26ed1a1e73eee24da78580eda3b13e5d3eb65361
This commit is contained in:
James E. Blair 2012-07-16 14:28:24 -07:00
parent 282fbda6f4
commit 3b73df7646

View File

@ -697,6 +697,8 @@ fi
if is_service_enabled swift; then
setup_develop $SWIFT_DIR
setup_develop $SWIFTCLIENT_DIR
fi
if is_service_enabled swift3; then
setup_develop $SWIFT3_DIR
fi
if is_service_enabled g-api n-api; then