diff options
author | Thiago Macieira <thiago.macieira@nokia.com> | 2009-08-03 18:25:35 +0200 |
---|---|---|
committer | Thiago Macieira <thiago.macieira@nokia.com> | 2009-08-03 18:27:21 +0200 |
commit | 1420cd1786c97b2852ad609050b5d7e212d9b16a (patch) | |
tree | dce5ea8319727c4c12780e141be7444fa49b41fe /bin | |
parent | cfc10eb0bc5a1e826401d66e5b2bd71fa185085c (diff) | |
download | qt-creator-1420cd1786c97b2852ad609050b5d7e212d9b16a.tar.gz |
Fix compliance of the qtcreator script with Bourne shell.
./bin/qtcreator: 3: Syntax error: "(" unexpected
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/qtcreator | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/qtcreator b/bin/qtcreator index b5f4f945d5..dc154aa199 100755 --- a/bin/qtcreator +++ b/bin/qtcreator @@ -1,6 +1,6 @@ #!/bin/sh -function makeAbsolute() { +makeAbsolute() { case "$1" in /*) # already absolute, return it |