[openrtm-commit:00458] r493 - branches/RELENG_1_1/OpenRTM-aist-Python/installer
openrtm @ openrtm.org
openrtm @ openrtm.org
2011年 10月 17日 (月) 17:59:03 JST
Author: kurihara
Date: 2011-10-17 17:59:03 +0900 (Mon, 17 Oct 2011)
New Revision: 493
Modified:
branches/RELENG_1_1/OpenRTM-aist-Python/installer/OpenRTM-aist-Python.wxs.in
Log:
The bug about shortcut of rtcd.py has been corrected.
Modified: branches/RELENG_1_1/OpenRTM-aist-Python/installer/OpenRTM-aist-Python.wxs.in
===================================================================
--- branches/RELENG_1_1/OpenRTM-aist-Python/installer/OpenRTM-aist-Python.wxs.in 2011-10-04 05:05:36 UTC (rev 492)
+++ branches/RELENG_1_1/OpenRTM-aist-Python/installer/OpenRTM-aist-Python.wxs.in 2011-10-17 08:59:03 UTC (rev 493)
@@ -139,10 +139,17 @@
{% for file in RtmOpenrtm_aist24UtilsRtcd.Files %}
<File Id="{% file.Id %}" Name="{% file.Name %}"
DiskId="1" Source="{% file.Source %}">
+ {% if file.Name is rtcd.py %}
<Shortcut Id="{% file.Id %}" Directory="ToolsMenuFolder"
Name="Start RTC daemon"
Arguments=' -d -f "[Version]examples\Python\rtcd.conf"'
Show="normal" WorkingDirectory="bin"/>
+ {% endif %}
+ {% if file.Name is rtcd.conf %}
+ <Shortcut Id="{% file.Id %}" Directory="ToolsMenuFolder"
+ Name="rtc.conf for RTC daemon"
+ Show="normal" WorkingDirectory="bin"/>
+ {% endif %}
</File>
{% endfor %}
</Component>
@@ -291,10 +298,17 @@
{% for file in RtmOpenrtm_aist25UtilsRtcd.Files %}
<File Id="{% file.Id %}" Name="{% file.Name %}"
DiskId="1" Source="{% file.Source %}">
+ {% if file.Name is rtcd.py %}
<Shortcut Id="{% file.Id %}" Directory="ToolsMenuFolder"
Name="Start RTC daemon"
Arguments=' -d -f "[Version]examples\Python\rtcd.conf"'
Show="normal" WorkingDirectory="bin"/>
+ {% endif %}
+ {% if file.Name is rtcd.conf %}
+ <Shortcut Id="{% file.Id %}" Directory="ToolsMenuFolder"
+ Name="rtc.conf for RTC daemon"
+ Show="normal" WorkingDirectory="bin"/>
+ {% endif %}
</File>
{% endfor %}
</Component>
@@ -443,10 +457,17 @@
{% for file in RtmOpenrtm_aist26UtilsRtcd.Files %}
<File Id="{% file.Id %}" Name="{% file.Name %}"
DiskId="1" Source="{% file.Source %}">
+ {% if file.Name is rtcd.py %}
<Shortcut Id="{% file.Id %}" Directory="ToolsMenuFolder"
Name="Start RTC daemon"
Arguments=' -d -f "[Version]examples\Python\rtcd.conf"'
Show="normal" WorkingDirectory="bin"/>
+ {% endif %}
+ {% if file.Name is rtcd.conf %}
+ <Shortcut Id="{% file.Id %}" Directory="ToolsMenuFolder"
+ Name="rtc.conf for RTC daemon"
+ Show="normal" WorkingDirectory="bin"/>
+ {% endif %}
</File>
{% endfor %}
</Component>
openrtm-commit メーリングリストの案内