diff options
author | Volker Grabsch <vog@notjusthosting.com> | 2010-04-23 18:13:00 +0000 |
---|---|---|
committer | Volker Grabsch <vog@notjusthosting.com> | 2010-04-23 18:13:00 +0000 |
commit | 57ed373ccc90629a74edd34a415bcec72a107e49 (patch) | |
tree | cc59c11054f94908b55862b2baa93d1695bf1d6f | |
parent | ece1767d8d45fce77eb82a09b34c196079af5955 (diff) | |
download | xine-lib-57ed373ccc90629a74edd34a415bcec72a107e49.tar.gz xine-lib-57ed373ccc90629a74edd34a415bcec72a107e49.tar.bz2 |
fix win32 recognition when cross compiling by using $host_os instead of $build_os
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 76f3f65a1..c678d85b2 100644 --- a/configure.ac +++ b/configure.ac @@ -252,7 +252,7 @@ dnl --------------------------------------------- have_supported_dvb=yes SYS=other -case "$build_os" in +case "$host_os" in gnu*) have_supported_dvb=no SYS=hurd |