randyk      2003/05/04 12:23:32

  Modified:    .        Makefile.PL
  Log:
  For Win32, expand list of drives to search for an Apache.exe (shouldn't
  start with 'A' or 'B', as if there's no disc in the drive, a popup box
  prompts you to put one in).
  
  Revision  Changes    Path
  1.25      +1 -1      httpd-apreq/Makefile.PL
  
  Index: Makefile.PL
  ===================================================================
  RCS file: /home/cvs/httpd-apreq/Makefile.PL,v
  retrieving revision 1.24
  retrieving revision 1.25
  diff -u -r1.24 -r1.25
  --- Makefile.PL       4 May 2003 19:18:23 -0000       1.24
  +++ Makefile.PL       4 May 2003 19:23:31 -0000       1.25
  @@ -137,7 +137,7 @@
     require Win32;
     my $apache;
    SEARCH: {
  -    for my $drive ('C'..'G') {
  +    for my $drive ('C' .. 'Z') {
         for my $p ('Apache', 'Program Files/Apache', 
                 'Program Files/Apache Group/Apache') {
        if (-e "$drive:/$p/Apache.exe") {
  
  
  

Reply via email to