Fix typo in temporary filename
authorkb <k.blammo@gmail.com>
Wed, 30 May 2012 05:15:38 +0000 (07:15 +0200)
committerQt by Nokia <qt-info@nokia.com>
Thu, 31 May 2012 00:06:42 +0000 (02:06 +0200)
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>
configure

index c8f6158..8f135d3 100755 (executable)
--- 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