mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-04-20 23:48:20 +00:00
phpmyadmin: fix PN->BPN in do_install for multilibs
Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Joe MacDonald <joe.macdonald@windriver.com>
This commit is contained in:
committed by
Joe MacDonald
parent
70b1e90f6d
commit
9b29616d08
@@ -5,7 +5,7 @@ LICENSE = "GPLv2 & LGPLv3 & MIT"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE;md5=eb723b61539feef013de476e68b5c50a \
|
||||
file://libraries/tcpdf/LICENSE.TXT;md5=5c87b66a5358ebcc495b03e0afcd342c"
|
||||
|
||||
PR = "r0"
|
||||
PR = "r1"
|
||||
|
||||
SRC_URI = "${SOURCEFORGE_MIRROR}/phpmyadmin/phpMyAdmin/${PV}/phpMyAdmin-${PV}-all-languages.tar.xz \
|
||||
file://apache.conf"
|
||||
@@ -18,13 +18,13 @@ S = "${WORKDIR}/phpMyAdmin-${PV}-all-languages"
|
||||
inherit allarch
|
||||
|
||||
do_install() {
|
||||
install -d ${D}${datadir}/${PN}
|
||||
cp -a * ${D}${datadir}/${PN}
|
||||
install -d ${D}${datadir}/${BPN}
|
||||
cp -a * ${D}${datadir}/${BPN}
|
||||
|
||||
install -d ${D}${sysconfdir}/apache2/conf.d
|
||||
install -m 0644 ${WORKDIR}/apache.conf ${D}${sysconfdir}/apache2/conf.d/phpmyadmin.conf
|
||||
}
|
||||
|
||||
FILES_${PN} = "${datadir}/${PN} \
|
||||
FILES_${PN} = "${datadir}/${BPN} \
|
||||
${sysconfdir}/apache2/conf.d"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user