summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Nyström <david.c.nystrom@gmail.com>2013-08-21 16:16:13 +0200
committerBruce Ashfield <bruce.ashfield@windriver.com>2013-08-25 01:26:02 -0400
commit7234dca86661841ccf406ecacfa1b4c0b17069eb (patch)
tree64db73f3bd452993b2593cb4a98b6e6c90c6f3ae
parent88a7e97b9bd4224600264aad7975d02ccae6694a (diff)
downloadmeta-virtualization-7234dca86661841ccf406ecacfa1b4c0b17069eb.tar.gz
Fixed Q&A error for OpenFlow recipe
Signed-off-by: David Nyström <david.nystrom@enea.com>
-rw-r--r--recipes-networking/openflow/openflow_1.0.bb9
1 files changed, 7 insertions, 2 deletions
diff --git a/recipes-networking/openflow/openflow_1.0.bb b/recipes-networking/openflow/openflow_1.0.bb
index 3663e50b..20a2bc95 100644
--- a/recipes-networking/openflow/openflow_1.0.bb
+++ b/recipes-networking/openflow/openflow_1.0.bb
@@ -1,4 +1,4 @@
1SUMMARY = "OpelFlow" 1SUMMARY = "OpenFlow"
2DESCRIPTION = "Provide a generic framework for handling devices in userspace." 2DESCRIPTION = "Provide a generic framework for handling devices in userspace."
3HOMEPAGE = "http://www.openflow.org" 3HOMEPAGE = "http://www.openflow.org"
4SECTION = "networking" 4SECTION = "networking"
@@ -21,4 +21,9 @@ PACKAGECONFIG[libssl] = "--enable-ssl,--disable-ssl, openssl, libssl"
21 21
22S = "${WORKDIR}/git" 22S = "${WORKDIR}/git"
23 23
24inherit autotools \ No newline at end of file 24inherit autotools
25
26do_install_append() {
27 # Remove /var/run as it is created on startup
28 rm -rf ${D}${localstatedir}/run
29}