Bugs item #1876755, was opened at 2008-01-21 16:09
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=642714&aid=1876755&group_id=105970

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: light
Group: v3.0
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Peter Crabtree (petercrabtree)
Assigned to: Nobody/Anonymous (nobody)
Summary: light does not parse -dut correctly.

Initial Comment:
In WiX 3.0.3711.0, light.exe does not understand the -dut option. The fix 
appears quite simple -- in light.cs, these ifs (first if at line 717):

else if (parameter.StartsWith("d"))
 // [snip]
else if ("dut" == parameter)
 // [snip]

simply need to switch order to:

else if ("dut" == parameter)
 // [snip]
else if (parameter.StartsWith("d"))
 // [snip]

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=642714&aid=1876755&group_id=105970

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
WiX-devs mailing list
WiX-devs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-devs

Reply via email to