Hello,

 

I am new in Wix and already having problems.

I have to install some driver to a given folder. For Win Vista, they
have to- and for all previous Win-versions, they must not be signed. To
solve this problem I thought of two separate merge-modules. To install
the correct one, I use conditions:

 

<Feature Id="UsbDriver _signed" Level="1">

  <Condition Level="1"><![CDATA[VersionNT >= 600]]></Condition>

  <MergeRef Id="UsbDriverMM_signed"/>

</Feature>

<Feature Id="UsbDriver_unsigned" Level="1" >

  <Condition Level="1"><![CDATA[NOT VersionNT OR VersionNT <
600]]></Condition>

  <MergeRef Id="UsbDriverMM_unsigned"/>

</Feature>

 

Naturally, while compiling my setup, following errors like following
occurred:

"ICE30: The target file 'Driver.cat' is installed in '...' by two
different components ... This breaks component reference counting."

 

Does someone know a solution for this problem?

 

Thanks,

Johann

------------------------------------------------------------------------------
Download Intel&#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to