summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@nokia.com>2009-08-24 16:30:04 +0200
committerThiago Macieira <thiago.macieira@nokia.com>2009-08-24 16:33:20 +0200
commit5b680a3c2c5e59fe899fa19e4d1c4cb251325f29 (patch)
treec341bcc5cd2babb9f4a2e8e4f0b52585800f6c56 /configure
parent8e8a75051a4053d4b536a96e2d05f1f9ddf05ee4 (diff)
Fix configure's support for traditional bourne shells.
not allowed: for flag; do allowed: for flag do Don't ask me why. The semi-colon should stand for a newline... Reviewed-by: Carlos Duclos
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure b/configure
index 97edc56c8b..06eed61223 100755
--- a/configure
+++ b/configure
@@ -110,7 +110,8 @@ EOF
linkerSupportsFlag()
{
lflags=-Wl
- for flag; do
+ for flag
+ do
safe_flag=`shellEscape "$flag"`
lflags=$lflags,$safe_flag
done