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>
This commit is contained in:
kb 2012-05-30 07:15:38 +02:00 committed by Qt by Nokia
parent 62fc26df0d
commit baed7bd5a7

2
configure vendored
View File

@ -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