From: Václav Slavík Date: Fri, 28 Jul 2006 10:38:22 +0000 (+0000) Subject: fixed makefiles to fail if building wxrc fails X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/09abe5d47dd82757e9f4ce106f021ace5c3b3ff3 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 --- diff --git a/build/bakefiles/wx.bkl b/build/bakefiles/wx.bkl index 2eb036a770..1855063855 100644 --- a/build/bakefiles/wx.bkl +++ b/build/bakefiles/wx.bkl @@ -61,20 +61,20 @@ xmllib - (test -d utils/wxrc && cd utils/wxrc && $(DOLLAR)(MAKE) all) || true + (if test -d utils/wxrc ; then cd utils/wxrc && $(DOLLAR)(MAKE) all ; fi) clean - (test -d utils/wxrc && cd utils/wxrc && $(DOLLAR)(MAKE) clean) || true + (if test -d utils/wxrc ; then cd utils/wxrc && $(DOLLAR)(MAKE) clean ; fi) install wxrc - (test -d utils/wxrc && cd utils/wxrc && $(DOLLAR)(MAKE) install) || true + (if test -d utils/wxrc ; then cd utils/wxrc && $(DOLLAR)(MAKE) install ; fi)