diff options
author | Zeno Albisser <zeno.albisser@nokia.com> | 2010-02-26 12:26:18 (GMT) |
---|---|---|
committer | Zeno Albisser <zeno.albisser@nokia.com> | 2010-02-26 12:35:23 (GMT) |
commit | 5601e13aa10ad616a3dd9ba263bc14e4c7e39dfb (patch) | |
tree | 89bbeb6abb36341dede2ce9a76fc5c5d18871132 | |
parent | 9e040eb916f01b78331560722f50cb41bb7f8d4c (diff) | |
download | Qt-5601e13aa10ad616a3dd9ba263bc14e4c7e39dfb.zip Qt-5601e13aa10ad616a3dd9ba263bc14e4c7e39dfb.tar.gz Qt-5601e13aa10ad616a3dd9ba263bc14e4c7e39dfb.tar.bz2 |
Modified configure script not to override $XPLATFORM in case of CYGWIN
Reviewed-by: Thiago Macieira
-rwxr-xr-x | configure | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -2407,7 +2407,9 @@ if [ "$CFG_EMBEDDED" != "no" ]; then fi ;; CYGWIN*:*) - CFG_EMBEDDED=x86 + if [ -z "$XPLATFORM" ]; then + CFG_EMBEDDED=x86 + fi ;; *) echo "Qt for Embedded Linux is not supported on this platform. Disabling." |