"Teresa Jeremy" <[EMAIL PROTECTED]> writes:

> The OemPnpDriverPath variable is added to the unattend.txt file even
> when you select not to use any of the drivers that unattend script
> finds.  This causes the Win2k/XP installation to fail because
> OemPnpDriverPath value is empty

Fixed in next release; thanks.  Patch appended.

 - Pat

--- install.pl.~1.40.~  2003-03-24 09:22:35.000000000 -0500
+++ install.pl  2003-06-19 15:27:18.000000000 -0400
@@ -349,7 +349,11 @@
         }
     }
 
-    return join ';', sort keys %dirs;
+    my $ret = join ';', sort keys %dirs;
+    # Setup does not like empty OemPnPDriversPath
+    $ret =~ /\S/
+        or undef $ret;
+    return $ret;
 }
 
 # Create the "postinst.bat" script and return its full path.  Do


-------------------------------------------------------
This SF.Net email is sponsored by: INetU
Attention Web Developers & Consultants: Become An INetU Hosting Partner.
Refer Dedicated Servers. We Manage Them. You Get 10% Monthly Commission!
INetU Dedicated Managed Hosting http://www.inetu.net/partner/index.php
_______________________________________________
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info

Reply via email to