OpenWrt – Diff between revs 2 and 3

Subversion Repositories:
Rev:
Only display areas with differencesIgnore whitespace
Rev 2 Rev 3
1 Description: Fix FTBFS on armhf by correctly detecting the architecture 1 Description: Fix FTBFS on armhf by correctly detecting the architecture
2 Origin: vendor 2 Origin: vendor
3 Bug-Debian: http://bugs.debian.org/730844 3 Bug-Debian: http://bugs.debian.org/730844
4 Author: Alessandro Ghedini <ghedo@debian.org> 4 Author: Alessandro Ghedini <ghedo@debian.org>
5 Last-Update: 2013-11-30 5 Last-Update: 2013-11-30
6   6  
7 --- a/configure.ac 7 --- a/configure.ac
8 +++ b/configure.ac 8 +++ b/configure.ac
9 @@ -252,7 +252,7 @@ case "${host_cpu}" in 9 @@ -234,7 +234,7 @@ case "${host_cpu}" in
10 ARCH_MAX="s390x" 10 ARCH_MAX="s390x"
11 ;; 11 ;;
12 12
13 - armv7*) 13 - armv7*)
14 + arm*) 14 + arm*)
15 AC_MSG_RESULT([ok (${host_cpu})]) 15 AC_MSG_RESULT([ok (${host_cpu})])
16 ARCH_MAX="arm" 16 ARCH_MAX="arm"
17 ;; 17 ;;
18   18