fixed makefiles to fail if building wxrc fails
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40350 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -61,20 +61,20 @@
|
|||||||
<depends>xmllib</depends>
|
<depends>xmllib</depends>
|
||||||
|
|
||||||
<command>
|
<command>
|
||||||
(test -d utils/wxrc && cd utils/wxrc && $(DOLLAR)(MAKE) all) || true
|
(if test -d utils/wxrc ; then cd utils/wxrc && $(DOLLAR)(MAKE) all ; fi)
|
||||||
</command>
|
</command>
|
||||||
</action>
|
</action>
|
||||||
<action id="clean-wxrc" cond="USE_XRC=='1'">
|
<action id="clean-wxrc" cond="USE_XRC=='1'">
|
||||||
<dependency-of>clean</dependency-of>
|
<dependency-of>clean</dependency-of>
|
||||||
<command>
|
<command>
|
||||||
(test -d utils/wxrc && cd utils/wxrc && $(DOLLAR)(MAKE) clean) || true
|
(if test -d utils/wxrc ; then cd utils/wxrc && $(DOLLAR)(MAKE) clean ; fi)
|
||||||
</command>
|
</command>
|
||||||
</action>
|
</action>
|
||||||
<action id="install-wxrc" cond="USE_XRC=='1'">
|
<action id="install-wxrc" cond="USE_XRC=='1'">
|
||||||
<dependency-of>install</dependency-of>
|
<dependency-of>install</dependency-of>
|
||||||
<depends>wxrc</depends>
|
<depends>wxrc</depends>
|
||||||
<command>
|
<command>
|
||||||
(test -d utils/wxrc && cd utils/wxrc && $(DOLLAR)(MAKE) install) || true
|
(if test -d utils/wxrc ; then cd utils/wxrc && $(DOLLAR)(MAKE) install ; fi)
|
||||||
</command>
|
</command>
|
||||||
</action>
|
</action>
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user