summaryrefslogtreecommitdiffstats
path: root/recipes-networking/netcf/netcf/0001-fix-network-driver-check-issue-on-opensuse.patch
diff options
context:
space:
mode:
authorAdrian Dudau <adrian.dudau@enea.com>2015-07-08 11:08:01 +0200
committerAdrian Dudau <adrian.dudau@enea.com>2015-07-08 11:09:24 +0200
commitec64b2418ccef1e14c6e58b8ca81bb9162c1dfeb (patch)
treebff0bd4240f00bbb21624c1df55583f61abaea25 /recipes-networking/netcf/netcf/0001-fix-network-driver-check-issue-on-opensuse.patch
downloadmeta-virtualization-ec64b2418ccef1e14c6e58b8ca81bb9162c1dfeb.tar.gz
initial commit for Enea Linux 4.0daisy-enea
Migrated from the internal git server on the daisy-enea branch Signed-off-by: Adrian Dudau <adrian.dudau@enea.com>
Diffstat (limited to 'recipes-networking/netcf/netcf/0001-fix-network-driver-check-issue-on-opensuse.patch')
-rw-r--r--recipes-networking/netcf/netcf/0001-fix-network-driver-check-issue-on-opensuse.patch28
1 files changed, 28 insertions, 0 deletions
diff --git a/recipes-networking/netcf/netcf/0001-fix-network-driver-check-issue-on-opensuse.patch b/recipes-networking/netcf/netcf/0001-fix-network-driver-check-issue-on-opensuse.patch
new file mode 100644
index 00000000..eef5b5cb
--- /dev/null
+++ b/recipes-networking/netcf/netcf/0001-fix-network-driver-check-issue-on-opensuse.patch
@@ -0,0 +1,28 @@
1From 285871a2db42727665a2ab7fc16fa2fb8fa830d3 Mon Sep 17 00:00:00 2001
2From: Ting Liu <b28495@freescale.com>
3Date: Thu, 23 May 2013 17:39:35 +0800
4Subject: [PATCH] fix network driver check issue on opensuse
5
6Upstream-Status: Pending
7
8Signed-off-by: Ting Liu <b28495@freescale.com>
9---
10 configure.ac | 2 +-
11 1 files changed, 1 insertions(+), 1 deletions(-)
12
13diff --git a/configure.ac b/configure.ac
14index 3f30865..708eb28 100644
15--- a/configure.ac
16+++ b/configure.ac
17@@ -77,7 +77,7 @@ fi
18 if test "x$with_driver" = "xcheck" && test -f /etc/ubuntu_version ; then
19 with_driver=debian
20 fi
21-if test "x$with_driver" = "xcheck" && test -f /etc/suse-release ; then
22+if test "x$with_driver" = "xcheck" && (test -f /etc/suse-release || test -f /etc/SuSE-release) ; then
23 with_driver=suse
24 fi
25 if test "x$with_driver" = "xcheck" ; then
26--
271.7.3.4
28