Remove useless check only causing trouble if you build a branch from somewhere else.

svn path=/trunk/RosBE/; revision=2331
This commit is contained in:
Daniel Reimer 2017-03-05 16:33:42 +00:00
parent cf5bcbfbd8
commit 80220fcc9e
2 changed files with 0 additions and 16 deletions

View File

@ -35,11 +35,6 @@ if ("$($args[0])" -eq "multi") {
$TITLE_COMMAND = "make $($args)"
}
if (!(Test-Path "$_ROSBE_ROSSOURCEDIR\output-MinGW-i386\*")) {
write-host "No Build Files found. You may want to use ""configure"" first."
exit
}
if (Test-Path "*.ninja") {
$MAKE_INT = "ninja.exe"
} else {

View File

@ -28,17 +28,6 @@ set HOST_CPP=%_ROSBE_CCACHE%g++
set TARGET_CC=%_ROSBE_CCACHE%%_ROSBE_PREFIX%gcc
set TARGET_CPP=%_ROSBE_CCACHE%%_ROSBE_PREFIX%g++
if not exist "%_ROSBE_ROSSOURCEDIR%\output-MinGW-i386\*" (
if not exist "%_ROSBE_ROSSOURCEDIR%\output-MinGW-amd64\*" (
if not exist "%_ROSBE_ROSSOURCEDIR%\output-VS-i386\*" (
if not exist "%_ROSBE_ROSSOURCEDIR%\output-VS-amd64\*" (
echo No Build Files found. You may want to use "configure" first.
goto :EOF
)
)
)
)
if exist "*.ninja" (
set MAKE_INT=ninja.exe
) else (