diff options
author | Bernd Kuhls <berndkuhls@hotmail.com> | 2014-04-08 20:22:05 +0200 |
---|---|---|
committer | Bernd Kuhls <berndkuhls@hotmail.com> | 2014-04-08 20:22:05 +0200 |
commit | e37a85cb62530ad4c43d173c3fd64838880e7aca (patch) | |
tree | 3c57d9bfebec4e6127e3a578e5ab107ae0eb5733 /m4 | |
parent | 29e45f59405f2ebd4f3f5d8014ddd1cbcf947879 (diff) |
[uClibc] Fix compilation on arm
Tested with:
Target: arm-buildroot-linux-uclibcgnueabi
gcc version 4.7.3 (Buildroot 2014.05-git-00735-gc1618c8)
Diffstat (limited to 'm4')
-rw-r--r-- | m4/xbmc_arch.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/m4/xbmc_arch.m4 b/m4/xbmc_arch.m4 index 75d25da266..5bcdd81ddc 100644 --- a/m4/xbmc_arch.m4 +++ b/m4/xbmc_arch.m4 @@ -29,7 +29,7 @@ case $host in powerpc64-*-linux-gnu*|powerpc64-*-linux-uclibc*) AC_SUBST(ARCH_DEFINES, "-DTARGET_POSIX -DTARGET_LINUX -D_LINUX -D_POWERPC64") ;; - arm*-*-linux-gnu*) + arm*-*-linux-gnu*|arm*-*-linux-uclibc*) AC_SUBST(ARCH_DEFINES, "-DTARGET_POSIX -DTARGET_LINUX -D_LINUX") ;; *-*linux-android*) |