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:
Anders Darander
2012-04-11 06:17:01 +00:00
committed by Koen Kooi
parent 8a9e1dc63d
commit 21b04f590f

View File

@@ -22,7 +22,7 @@ inherit autotools pkgconfig
do_configure() {
echo "main.mk is patched, no need to configure"
# make pkgconfig.bbclass pick this up
mv ${WORKDIR}/sqlite.pc ${S}
cp ${WORKDIR}/sqlite.pc ${S}
}
do_compile() {