summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkb <k.blammo@gmail.com>2012-05-30 07:15:38 +0200
committerQt by Nokia <qt-info@nokia.com>2012-05-31 02:06:42 +0200
commitbaed7bd5a74557cca8b9375deeb9ea7e400c60ec (patch)
tree48f6e734993291367bf8c5e031782b42e0d2276c
parent62fc26df0d0a373daf0333942305238c127da982 (diff)
Fix typo in temporary filename
The configure script uses the bash $"..." string internationalization syntax; this generates an error in other shells. Since this feature is only used in one place it is likely a typo. Change-Id: I076a785c3901b04175b8669e32c55989385720e3 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index c8f615888c..8f135d3774 100755
--- a/configure
+++ b/configure
@@ -5743,7 +5743,7 @@ if [ -n "$PKG_CONFIG_SYSROOT_DIR" ] || [ -n "$PKG_CONFIG_LIBDIR" ]; then
echo "# pkgconfig" >> "$QTCONFIG.tmp"
echo "PKG_CONFIG_SYSROOT_DIR = $PKG_CONFIG_SYSROOT_DIR" >> "$QTCONFIG.tmp"
echo "PKG_CONFIG_LIBDIR = $PKG_CONFIG_LIBDIR" >> "$QTCONFIG.tmp"
- echo >> $"$QTCONFIG.tmp"
+ echo >> "$QTCONFIG.tmp"
fi
if [ -n "$CFG_SYSROOT" ]; then