Fixed Q&A error for OpenFlow recipe

Signed-off-by: David Nyström <david.nystrom@enea.com>
This commit is contained in:
David Nyström 2013-08-21 16:16:13 +02:00 committed by Bruce Ashfield
parent 88a7e97b9b
commit 7234dca866

View File

@ -1,4 +1,4 @@
SUMMARY = "OpelFlow" SUMMARY = "OpenFlow"
DESCRIPTION = "Provide a generic framework for handling devices in userspace." DESCRIPTION = "Provide a generic framework for handling devices in userspace."
HOMEPAGE = "http://www.openflow.org" HOMEPAGE = "http://www.openflow.org"
SECTION = "networking" SECTION = "networking"
@ -22,3 +22,8 @@ PACKAGECONFIG[libssl] = "--enable-ssl,--disable-ssl, openssl, libssl"
S = "${WORKDIR}/git" S = "${WORKDIR}/git"
inherit autotools inherit autotools
do_install_append() {
# Remove /var/run as it is created on startup
rm -rf ${D}${localstatedir}/run
}