]> granicus.if.org Git - curl/commitdiff
checksrc.bat: Better detection of Perl installation
authorSteve Holme <steve_holme@hotmail.com>
Fri, 16 Jan 2015 20:44:32 +0000 (20:44 +0000)
committerSteve Holme <steve_holme@hotmail.com>
Fri, 16 Jan 2015 21:14:22 +0000 (21:14 +0000)
projects/checksrc.bat

index 139914dd80b5b251d4fae65a847b36619869927c..d81ce7de091ab79c7d0fa9ace2cfd81cfff9033e 100644 (file)
@@ -6,7 +6,7 @@ rem *                             / __| | | | |_) | |
 rem *                            | (__| |_| |  _ <| |___
 rem *                             \___|\___/|_| \_\_____|
 rem *
-rem * Copyright (C) 2014, Steve Holme, <steve_holme@hotmail.com>.
+rem * Copyright (C) 2014 - 2015, Steve Holme, <steve_holme@hotmail.com>.
 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