From cb501b1009db7e9a3c5a4e70275838111f29062b Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Sat, 5 Mar 2005 00:21:00 +0000 Subject: [PATCH] Tweak how we cheat on the resource files git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32610 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/distrib/mac/wxPythonOSX/build | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/wxPython/distrib/mac/wxPythonOSX/build b/wxPython/distrib/mac/wxPythonOSX/build index cec6f78b3c..3f0152d5d0 100755 --- a/wxPython/distrib/mac/wxPythonOSX/build +++ b/wxPython/distrib/mac/wxPythonOSX/build @@ -225,16 +225,16 @@ if [ $skipbuild != yes ]; then # Make wxWidgets and some contribs - # For some reason Rez and DeRez have started locking up if run as - # root, figure out why, but in the meantime... - if [ "$UID" = "0" ]; then - chmod a+w lib - if [ "$CHARTYPE" = "ansi" ]; then - su robind -c "make lib/libwx_macd-2.5.4.r" - else - su robind -c "make lib/libwx_macud-2.5.4.r" - fi + # For some reason Rez and DeRez have started locking up if run via + # an ssh terminal. Figure out why, but in the meantime... + if [ "$CHARTYPE" = "ansi" ]; then + echo cp /projects/wx2.5/bld/lib/libwx_macd-2.5.?.r* lib + cp /projects/wx2.5/bld/lib/libwx_macd-2.5.?.r* lib + else + echo cp /projects/wx2.5/bld-unicode/lib/libwx_macud-2.5.?.r* lib + cp /projects/wx2.5/bld-unicode/lib/libwx_macud-2.5.?.r* lib fi + touch lib/libwx*.r* make $MAKEJOBS make $MAKEJOBS -C contrib/src/gizmos -- 2.47.2