diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2014-08-31 23:55:19 -0700 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2014-09-26 05:41:51 +0200 |
commit | 054cef3654905b5d6e287117332c446ecedffb6d (patch) | |
tree | 5eb5be0b46f535e90095a1a8286b85f1e6e356ec /meta-webserver/recipes-php | |
parent | 1443c68987f62df1124909c2cecb31f1e4fd8bb2 (diff) | |
download | meta-openembedded-054cef3654905b5d6e287117332c446ecedffb6d.tar.gz |
phpmyadmin: add bash to RDEPENDS_phpmyadmin
Bashism:
possible bashism in plugins/transformations/generator_plugin.sh line 16 (echo -e):
echo -e "Usage: ./generator_plugin.sh MIMEType MIMESubtype TransformationName [Description]\n"
possible bashism in plugins/transformations/generator_plugin.sh line 28 (${parm,[,][pat]} or ${parm^[^][pat]}):
MT="${MT^}"
possible bashism in plugins/transformations/generator_plugin.sh line 29 (${parm,[,][pat]} or ${parm^[^][pat]}):
MS="${MS^}"
possible bashism in plugins/transformations/generator_plugin.sh line 30 (${parm,[,][pat]} or ${parm^[^][pat]}):
TN="${TN^}"
possible bashism in plugins/transformations/generator_plugin.sh line 51 (should be 'b = a'):
if [ "$4" == "--generate_only_main_class" ]; then
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Diffstat (limited to 'meta-webserver/recipes-php')
-rw-r--r-- | meta-webserver/recipes-php/phpmyadmin/phpmyadmin_4.2.7.bb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta-webserver/recipes-php/phpmyadmin/phpmyadmin_4.2.7.bb b/meta-webserver/recipes-php/phpmyadmin/phpmyadmin_4.2.7.bb index 8054c3580..0de3f6d43 100644 --- a/meta-webserver/recipes-php/phpmyadmin/phpmyadmin_4.2.7.bb +++ b/meta-webserver/recipes-php/phpmyadmin/phpmyadmin_4.2.7.bb | |||
@@ -29,3 +29,4 @@ do_install() { | |||
29 | FILES_${PN} = "${datadir}/${BPN} \ | 29 | FILES_${PN} = "${datadir}/${BPN} \ |
30 | ${sysconfdir}/apache2/conf.d" | 30 | ${sysconfdir}/apache2/conf.d" |
31 | 31 | ||
32 | RDEPENDS_${PN} += "bash" | ||