[PATCH] Fixed Q&A error for OpenFlow recipe
David Nystr?m
Signed-off-by: David Nyström <david.nystrom@...>
--- recipes-networking/openflow/openflow_1.0.bb | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/recipes-networking/openflow/openflow_1.0.bb b/recipes-networking/openflow/openflow_1.0.bb index 3663e50..20a2bc9 100644 --- a/recipes-networking/openflow/openflow_1.0.bb +++ b/recipes-networking/openflow/openflow_1.0.bb @@ -1,4 +1,4 @@ -SUMMARY = "OpelFlow" +SUMMARY = "OpenFlow" DESCRIPTION = "Provide a generic framework for handling devices in userspace." HOMEPAGE = "http://www.openflow.org" SECTION = "networking" @@ -21,4 +21,9 @@ PACKAGECONFIG[libssl] = "--enable-ssl,--disable-ssl, openssl, libssl" S = "${WORKDIR}/git" -inherit autotools \ No newline at end of file +inherit autotools + +do_install_append() { + # Remove /var/run as it is created on startup + rm -rf ${D}${localstatedir}/run +} -- 1.8.3.2 |
|