summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorAndrew Stanley-Jones <andrew.stanley-jones@nokia.com>2010-04-08 12:33:37 +1000
committerAndrew Stanley-Jones <andrew.stanley-jones@nokia.com>2010-06-22 13:42:06 +1000
commit7b50c0672ee68dc5aaddc0d621795e67c9de0faa (patch)
treef8a738aabafad8ee5f1614705c0ed3e9499046e7 /configure
parent2832dcd547e4c68eee9b4d7570f60fad008cc82e (diff)
Fix cross compiling bug
Task-number: MOBILITY-773
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index b47457294a..183d351ea5 100755
--- a/configure
+++ b/configure
@@ -445,7 +445,7 @@ compileTest()
printf "."
"$MAKE" >> "$CONFIG_LOG" 2>&1
printf ". "
- if ./$2 >> "$CONFIG_LOG" 2>&1; then
+ if [ -e ./$2 ]; then
echo "OK"
echo "$2_enabled = yes" >> "$CONFIG_IN"
else