mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-11 04:49:58 +00:00
sqlite: cp instead of mv in do_configure
The use of mv in do_configure() made bitbake error out if a second run of do_configure was requested. Copy the file instead. Signed-off-by: Anders Darander <anders@chargestorm.se> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
This commit is contained in:
committed by
Koen Kooi
parent
8a9e1dc63d
commit
21b04f590f
@@ -22,7 +22,7 @@ inherit autotools pkgconfig
|
|||||||
do_configure() {
|
do_configure() {
|
||||||
echo "main.mk is patched, no need to configure"
|
echo "main.mk is patched, no need to configure"
|
||||||
# make pkgconfig.bbclass pick this up
|
# make pkgconfig.bbclass pick this up
|
||||||
mv ${WORKDIR}/sqlite.pc ${S}
|
cp ${WORKDIR}/sqlite.pc ${S}
|
||||||
}
|
}
|
||||||
|
|
||||||
do_compile() {
|
do_compile() {
|
||||||
|
|||||||
Reference in New Issue
Block a user