summaryrefslogtreecommitdiffstats
path: root/configure.bat
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>2014-11-18 17:47:15 +0100
committerOswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>2015-02-04 16:33:40 +0000
commitb8ed5d3c6fa50d48bda84dd5c3c05f1395c1f638 (patch)
tree9401db4a89bbaf63a9e9e24106aecb4bcdf0468b /configure.bat
parent7ee850636ec12b6778e890161b4381af709cadbc (diff)
remove some redundant backslashes
%QTSRC% always contains a trailing backslash. Change-Id: I96772c18f45655f8dbe386f9351d0823fa70f1d0 Reviewed-by: Joerg Bornemann <joerg.bornemann@theqtcompany.com>
Diffstat (limited to 'configure.bat')
-rw-r--r--configure.bat6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.bat b/configure.bat
index 4771bbda1a..ae42248f12 100644
--- a/configure.bat
+++ b/configure.bat
@@ -34,7 +34,7 @@
@echo off
set QTSRC=%~dp0
set QTDIR=%CD%
-if not exist %QTSRC%\.gitignore goto sconf
+if not exist %QTSRC%.gitignore goto sconf
echo Please wait while bootstrapping configure ...
for %%C in (cl.exe icl.exe g++.exe perl.exe) do set %%C=%%~$PATH:C
@@ -59,7 +59,7 @@ if errorlevel 1 goto exit
echo #### Generated by configure.bat - DO NOT EDIT! ####> Makefile
echo/>> Makefile
-for /f "tokens=3 usebackq" %%V in (`findstr QT_VERSION_STR %QTSRC%\src\corelib\global\qglobal.h`) do @echo QTVERSION = %%~V>> Makefile
+for /f "tokens=3 usebackq" %%V in (`findstr QT_VERSION_STR %QTSRC%src\corelib\global\qglobal.h`) do @echo QTVERSION = %%~V>> Makefile
if not "%cl.exe%" == "" (
echo CXX = cl>>Makefile
echo EXTRA_CXXFLAGS =>>Makefile
@@ -99,5 +99,5 @@ configure.exe -srcdir %QTSRC% %*
goto exit
:sconf
-%QTSRC%\configure.exe %*
+%QTSRC%configure.exe %*
:exit