openocd: avoid documentation rebuild to fix build issues
[buildroot-gz.git] / package / sg3_utils / 0001-support-uclinux-as-a-linux.patch
blobd9106cd9f85ac1953b9e40d5be81922eac983e32
1 Recognise uclinux as a linux
3 Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
5 diff -durN sg3_utils-1.42.orig/configure.ac sg3_utils-1.42/configure.ac
6 --- sg3_utils-1.42.orig/configure.ac 2015-10-21 01:10:59.000000000 +0200
7 +++ sg3_utils-1.42/configure.ac 2016-08-14 19:30:37.841766149 +0200
8 @@ -71,7 +71,7 @@
10 # Define platform-specific symbol.
11 AM_CONDITIONAL(OS_FREEBSD, [echo $host_os | grep 'freebsd' > /dev/null])
12 -AM_CONDITIONAL(OS_LINUX, [echo $host_os | grep '^linux' > /dev/null])
13 +AM_CONDITIONAL(OS_LINUX, [echo $host_os | grep -E '^(uc)?linux' > /dev/null])
14 AM_CONDITIONAL(OS_OSF, [echo $host_os | grep '^osf' > /dev/null])
15 AM_CONDITIONAL(OS_SOLARIS, [echo $host_os | grep '^solaris' > /dev/null])
16 AM_CONDITIONAL(OS_WIN32_MINGW, [echo $host_os | grep '^mingw' > /dev/null])