From: Steve Holme Date: Fri, 16 Jan 2015 20:44:32 +0000 (+0000) Subject: checksrc.bat: Better detection of Perl installation X-Git-Tag: curl-7_41_0~141 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=224cf1c27455f872ddcbd1f4239c41d1ed3b9696;p=thirdparty%2Fcurl.git checksrc.bat: Better detection of Perl installation --- diff --git a/projects/checksrc.bat b/projects/checksrc.bat index 139914dd80..d81ce7de09 100644 --- a/projects/checksrc.bat +++ b/projects/checksrc.bat @@ -6,7 +6,7 @@ rem * / __| | | | |_) | | rem * | (__| |_| | _ <| |___ rem * \___|\___/|_| \_\_____| rem * -rem * Copyright (C) 2014, Steve Holme, . +rem * Copyright (C) 2014 - 2015, Steve Holme, . rem * rem * This software is licensed as described in the file COPYING, which rem * you should have received as part of this distribution. The terms @@ -33,8 +33,11 @@ rem *************************************************************************** :prerequisites rem Check we have Perl installed - if not exist "C:\Perl" ( - if not exist "C:\Perl64" goto noperl + echo %PATH% | findstr /I /C:"\Perl" 1>nul + if errorlevel 1 ( + if not exist "%SystemDrive%\Perl" ( + if not exist "%SystemDrive%\Perl64" goto noperl + ) ) :configure