summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBruce Ashfield <bruce.ashfield@windriver.com>2014-12-03 09:16:55 -0500
committerBruce Ashfield <bruce.ashfield@windriver.com>2014-12-03 09:38:43 -0500
commit12374d96e4b6130bdd26cb9b688c2ddc95f77d0d (patch)
tree3335a2a943a1507faf2bfee92ab167f58e074c0e
parent382e7184e5a23ebfeb2fd9ec432e6545170fee7d (diff)
downloadmeta-cloud-services-12374d96e4b6130bdd26cb9b688c2ddc95f77d0d.tar.gz
trove: switch to basename <file> <suffix>
basename -s is not unviversally supported, so we switch to something more standard. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
-rwxr-xr-xmeta-openstack/recipes-devtools/python/python-trove_git.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-trove_git.bb b/meta-openstack/recipes-devtools/python/python-trove_git.bb
index f705708..ae6defd 100755
--- a/meta-openstack/recipes-devtools/python/python-trove_git.bb
+++ b/meta-openstack/recipes-devtools/python/python-trove_git.bb
@@ -67,7 +67,7 @@ do_install_append() {
67 cp -r ${TEMPLATE_CONF_DIR}/* ${TROVE_CONF_DIR} 67 cp -r ${TEMPLATE_CONF_DIR}/* ${TROVE_CONF_DIR}
68 68
69 for file in trove.conf trove-conductor.conf trove-taskmanager.conf trove-guestagent.conf; do 69 for file in trove.conf trove-conductor.conf trove-taskmanager.conf trove-guestagent.conf; do
70 LOG_FILE=`basename -s .conf $file` 70 LOG_FILE=`basename $file .conf`
71 71
72 # Install config files. 72 # Install config files.
73 install -m 600 "${TEMPLATE_CONF_DIR}/${file}.sample" \ 73 install -m 600 "${TEMPLATE_CONF_DIR}/${file}.sample" \