Skip to content

Commit

Permalink
remove some redundant backslashes
Browse files Browse the repository at this point in the history
%QTSRC% always contains a trailing backslash.

Change-Id: I96772c18f45655f8dbe386f9351d0823fa70f1d0
Reviewed-by: Joerg Bornemann <[email protected]>
  • Loading branch information
ossilator committed Feb 4, 2015
1 parent 7ee8506 commit b8ed5d3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions configure.bat
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -99,5 +99,5 @@ configure.exe -srcdir %QTSRC% %*
goto exit

:sconf
%QTSRC%\configure.exe %*
%QTSRC%configure.exe %*
:exit

0 comments on commit b8ed5d3

Please sign in to comment.