From 0ad6c7222799e32586fec6c2f061a0c82540b304 Mon Sep 17 00:00:00 2001 From: Steve Holme Date: Sat, 5 Mar 2016 21:03:40 +0000 Subject: checksrc.bat: Fixed cannot find perl if installed but not in path --- projects/checksrc.bat | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) (limited to 'projects') diff --git a/projects/checksrc.bat b/projects/checksrc.bat index 39291f654..5359e5ff0 100644 --- a/projects/checksrc.bat +++ b/projects/checksrc.bat @@ -6,7 +6,7 @@ rem * / __| | | | |_) | | rem * | (__| |_| | _ <| |___ rem * \___|\___/|_| \_\_____| rem * -rem * Copyright (C) 2014 - 2015, Steve Holme, . +rem * Copyright (C) 2014 - 2016, 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 @@ -48,11 +48,18 @@ rem *************************************************************************** shift & goto parseArgs :prerequisites - rem Check we have Perl installed + rem Check we have Perl in our path echo %PATH% | findstr /I /C:"\Perl" 1>nul if errorlevel 1 ( - if not exist "%SystemDrive%\Perl" ( - if not exist "%SystemDrive%\Perl64" goto noperl + rem It isn't so check we have it installed and set the path if it is + if exist "%SystemDrive%\Perl" ( + set "PATH=%PATH%;%SystemDrive%\Perl\bin" + ) else ( + if exist "%SystemDrive%\Perl64" ( + set "PATH=%SystemDrive%\Perl64\bin;%PATH%" + ) else ( + goto noperl + ) ) ) -- cgit v1.2.3