Issue #2164 - fix 13.6.1 build

Former-commit-id: a3eb33bc1e71a6930f17c63a09c924289d9d84ed
This commit is contained in:
Bryan Kowal 2013-07-15 11:32:03 -05:00
parent c89449ba6d
commit 1e8cd0b65e

View file

@ -190,7 +190,9 @@ function buildFeatureRPMs()
echo "feature = ${feature}"
if [ "${feature}" = "com.raytheon.uf.viz.cots.feature" ] ||
[ "${feature}" = "com.raytheon.uf.viz.base.feature" ] ||
[ "${feature}" = "com.raytheon.uf.viz.localization.perspective.feature" ]; then
[ "${feature}" = "com.raytheon.uf.viz.localization.perspective.feature" ] ||
[ "${feature}" = "com.raytheon.viz.satellite.feature" ] ||
[ "${feature}" = "com.raytheon.uf.viz.nwsauth.feature" ]; then
_component_name=""
_downstream_requires="awips2-common-base"
@ -204,6 +206,14 @@ function buildFeatureRPMs()
_component_name="awips2-cave-viz-localization-perspective"
_downstream_requires="awips2-common-base awips2-cave-viz-base"
fi
if [ "${feature}" = "com.raytheon.viz.satellite.feature" ]; then
_component_name="awips2-cave-viz-satellite"
_downstream_requires="awips2-common-base awips2-cave-viz-base awips2-cave-viz-core"
fi
if [ "${feature}" = "com.raytheon.uf.viz.nwsauth.feature" ]; then
_component_name="awips2-cave-viz-nwsauth"
_downstream_requires="awips2-common-base awips2-cave-viz-base"
fi
echo 'export COMPONENT_NAME="${_component_name}"' > \
${CONST_SETUP_DIR}/feature.setup