diff options
author | David Nyström <david.c.nystrom@gmail.com> | 2013-08-21 16:16:13 +0200 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2013-08-25 01:26:02 -0400 |
commit | 7234dca86661841ccf406ecacfa1b4c0b17069eb (patch) | |
tree | 64db73f3bd452993b2593cb4a98b6e6c90c6f3ae /recipes-networking | |
parent | 88a7e97b9bd4224600264aad7975d02ccae6694a (diff) | |
download | meta-virtualization-7234dca86661841ccf406ecacfa1b4c0b17069eb.tar.gz |
Fixed Q&A error for OpenFlow recipe
Signed-off-by: David Nyström <david.nystrom@enea.com>
Diffstat (limited to 'recipes-networking')
-rw-r--r-- | recipes-networking/openflow/openflow_1.0.bb | 9 |
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 @@ | |||
1 | SUMMARY = "OpelFlow" | 1 | SUMMARY = "OpenFlow" |
2 | DESCRIPTION = "Provide a generic framework for handling devices in userspace." | 2 | DESCRIPTION = "Provide a generic framework for handling devices in userspace." |
3 | HOMEPAGE = "http://www.openflow.org" | 3 | HOMEPAGE = "http://www.openflow.org" |
4 | SECTION = "networking" | 4 | SECTION = "networking" |
@@ -21,4 +21,9 @@ PACKAGECONFIG[libssl] = "--enable-ssl,--disable-ssl, openssl, libssl" | |||
21 | 21 | ||
22 | S = "${WORKDIR}/git" | 22 | S = "${WORKDIR}/git" |
23 | 23 | ||
24 | inherit autotools \ No newline at end of file | 24 | inherit autotools |
25 | |||
26 | do_install_append() { | ||
27 | # Remove /var/run as it is created on startup | ||
28 | rm -rf ${D}${localstatedir}/run | ||
29 | } | ||