Patch: https://github.com/openvswitch/ovs/commit/0c15b76511e78a1f84dec49138d7169c2f3eedf6 introduced a version variable for the MSI itself but did not propagate it too the driver version (used by the windows certificate tests).
This patch updates the driver version. Signed-off-by: Alin Gabriel Serdean <[email protected]> --- windows/ovs-windows-installer/Product.wxs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/ovs-windows-installer/Product.wxs b/windows/ovs-windows-installer/Product.wxs index 23bc880..599fd43 100644 --- a/windows/ovs-windows-installer/Product.wxs +++ b/windows/ovs-windows-installer/Product.wxs @@ -24,7 +24,7 @@ <Property Id="Description" Value="Open vSwitch Extension" /> <Property Id="DriverID" Value="{583CC151-73EC-4A6A-8B47-578297AD7623}" /> - <Property Id="DriverVersion" Value="6.3.9600.17298" /> + <Property Id="DriverVersion" Value="$(var.Version)" /> <Property Id="ExtensionType" Value="Forwarding" /> <Condition Message="This application is only supported on Windows 2012 or higher."> -- 2.10.2.windows.1 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
