Look for unix find command in multiple places
authorKevin Koch <kpkoch@mit.edu>
Thu, 26 Apr 2007 13:02:32 +0000 (13:02 +0000)
committerKevin Koch <kpkoch@mit.edu>
Thu, 26 Apr 2007 13:02:32 +0000 (13:02 +0000)
Not tagged yet in case it should not go in 3.2.

Look for the unix find command in a list of directories instead of in only one place.  This way Jeff can install cygwin in c:\tools\cygwin and Ken can have it in C:\cygwin.  The two places in the list are for those two possibilities.  c:\cygwin\bin and c:\tools\cygwin\bin.

Move some prints below where logging starts, so the messages will be in the log.

Ticket: new
Target_Version: 1.6.1

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@19534 dc483132-0cff-0310-8789-dd5450dbe970

src/windows/build/bkw.pl

index 439e68053bb10cf79e52cd1452deb3c1314556c5..9321bf69bdc0c63f6e81822ceab2ea208286e760 100644 (file)
@@ -237,22 +237,34 @@ sub main {
     if ($vverbose) {print "Debug -- Config: ".Dumper($config);}\r
     \r
     # Test the unix find command:\r
-    if (! exists $odr->{unixfind}->{value})    {\r
-        $odr->{unixfind}->{value}   = "C:\\tools\\cygwin\\bin";\r
-         }\r
-    local $unixfind     = $odr->{unixfind}->{value};\r
-\r
-    local $savedPATH    = $ENV{PATH};\r
-    $ENV{PATH}          = $unixfind.";".$savedPATH;\r
-    print "Info -- chdir to ".`cd`."\n"         if ($verbose);\r
-    if (-e "a.tmp") {!system("rm a.tmp")        or die "Fatal -- Couldn't clean temporary file a.tmp.";}\r
-    !system("find . -maxdepth 0 -name a.tmp > b.tmp 2>&1")  or die "Fatal -- find test failed.";\r
-    local $filesize = -s "b.tmp";\r
-    $ENV{PATH} = $savedPATH;\r
-    if ($filesize > 0) {\r
-        die "Fatal -- $unixfind does not appear to be a path to a UNIX find command.";\r
+    # List of directories where it might be:\r
+    my @find_dirs = ('c:\\cygwin\\bin', 'c:\\tools\\cygwin\\bin');\r
+    if (exists $odr->{unixfind}->{value})    {    ## Was an additional place to look specified?\r
+        push (@find_dirs, $odr->{unixfind}->{value});\r
         }\r
-        \r
+    my $bFindFound      = 0;\r
+    foreach my $dir (@find_dirs) {\r
+        if (-d $dir) {\r
+            local $savedPATH    = $ENV{PATH};\r
+            $ENV{PATH}          = $dir.";".$savedPATH;\r
+            if (-e "a.tmp") {!system("rm a.tmp")        or die "Fatal -- Couldn't clean temporary file a.tmp.";}\r
+            !system("find . -maxdepth 0 -name a.tmp > b.tmp 2>&1")  or die "Fatal -- find test failed.";\r
+            local $filesize = -s "b.tmp";\r
+            $ENV{PATH} = $savedPATH;\r
+            if ($filesize <= 0) {\r
+                $bFindFound                 = 1;\r
+                $odr->{unixfind}->{value}   = $dir;\r
+                last;\r
+                }\r
+            }\r
+        }\r
+    if (! $bFindFound) {\r
+        print "Fatal -- unix find command not found in \n";\r
+        map {print " $_ "} @find_dirs;\r
+        print "\n";\r
+        die;\r
+        }\r
+                \r
     # Don't allow /svntag and /svnbranch simultaneously:\r
     if ( (length $odr->{svntag}->{value} > 0)   && \r
          (length $odr->{svnbranch}->{value} > 0) ) {\r
@@ -282,14 +294,6 @@ sub main {
             }\r
         }\r
 \r
-    print "Executing $cmdline\n";\r
-    local $argvsize = @ARGV;\r
-    if ($argvsize > 0) {\r
-        print "\nArguments for NMAKE: ";\r
-        map {print " $_ "} @ARGV;\r
-        print "\n";\r
-        }\r
-       \r
     #                (------------------------------------------------)\r
     if ( (-d $wd) && ( ($rverb =~ /export/) || ($rverb =~ /checkout/) ) ) {\r
         print "\n\nHEADS UP!!\n\n";\r
@@ -311,6 +315,16 @@ sub main {
         $l->no_die_handler;        ## Needed so XML::Simple won't throw exceptions.\r
         }\r
 \r
+    print "Executing $cmdline\n";\r
+    local $argvsize = @ARGV;\r
+    if ($argvsize > 0) {\r
+        print "\nArguments for NMAKE: ";\r
+        map {print " $_ "} @ARGV;\r
+        print "\n";\r
+        }\r
+       \r
+    print "Info -- Using unix find in $odr->{unixfind}->{value}\n"   if ($verbose);\r
+\r
 ##++ Begin repository action:\r
     if ($rverb =~ /skip/) {print "Info -- *** Skipping repository access.\n"    if ($verbose);}\r
     else {\r