From abeed0da177a5c58eb3fa0a72e473fed294ae884 Mon Sep 17 00:00:00 2001 From: Ben Kaduk Date: Fri, 28 Jun 2013 18:08:21 -0400 Subject: Use new-style variable expansion for light.exe With WiX 3.x, the preprocessor candle.exe expands variables using $(); the linker light.exe expands localization and similar variables using !(), though it accepts the $() form and prints a warning. Switch to using the expected form to silence the warnings. ticket: 7390 tags: pullup target_version 1.11.4 --- src/windows/installer/wix/features.wxi | 20 ++++++++++---------- src/windows/installer/wix/kfw.wxs | 18 +++++++++--------- src/windows/installer/wix/lang/config_1033.wxi | 24 ++++++++++++------------ src/windows/installer/wix/property.wxi | 6 +++--- 4 files changed, 34 insertions(+), 34 deletions(-) (limited to 'src/windows/installer') diff --git a/src/windows/installer/wix/features.wxi b/src/windows/installer/wix/features.wxi index ff6302709f..398ddda6f3 100644 --- a/src/windows/installer/wix/features.wxi +++ b/src/windows/installer/wix/features.wxi @@ -28,28 +28,28 @@ + Title="!(loc.StrKerberosClientDebugTitle)"> @@ -143,10 +143,10 @@ + Title="!(loc.KerberosSDKTitle)"> @@ -168,10 +168,10 @@ + Title="!(loc.KerberosDocTitle)"> - Privileged - VersionNT >= 501 - (Not (VersionNT = 501)) Or (ServicePackLevel >= 3) - (Not (VersionNT = 600)) Or (ServicePackLevel >= 2) - USELEASH Or USENETIDMGR - Not (USELEASH And USENETIDMGR) + Privileged + VersionNT >= 501 + (Not (VersionNT = 501)) Or (ServicePackLevel >= 3) + (Not (VersionNT = 600)) Or (ServicePackLevel >= 2) + USELEASH Or USENETIDMGR + Not (USELEASH And USENETIDMGR) - + diff --git a/src/windows/installer/wix/lang/config_1033.wxi b/src/windows/installer/wix/lang/config_1033.wxi index 5875e72817..78f26d31e2 100644 --- a/src/windows/installer/wix/lang/config_1033.wxi +++ b/src/windows/installer/wix/lang/config_1033.wxi @@ -28,27 +28,27 @@ - - + + - - + + - + - + - + - + @@ -60,9 +60,9 @@ - + - + @@ -72,5 +72,5 @@ - - \ No newline at end of file + + diff --git a/src/windows/installer/wix/property.wxi b/src/windows/installer/wix/property.wxi index 3e52f046d2..70504c181c 100644 --- a/src/windows/installer/wix/property.wxi +++ b/src/windows/installer/wix/property.wxi @@ -48,8 +48,8 @@ - $(loc.CantRemoveNSIS) - $(loc.IE501Required) + !(loc.CantRemoveNSIS) + !(loc.IE501Required) @@ -93,4 +93,4 @@ $(var.UseNetIDMgr) - \ No newline at end of file + -- cgit