diff options
author | Zachary Slater <zjs@zacharyjackslater.com> | 2013-02-15 15:57:32 -0800 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-02-16 21:58:24 +0000 |
commit | 5ebc9ce690c0559155c9e09b4671b7d50d42a880 (patch) | |
tree | 14e10cee7a07cbab31cd97005379cb0a39477559 | |
parent | 1fba10104e76e937eeac60bc207a74012ab936dc (diff) |
Fixed build for mac (s/rend2/opengl2/)
-rwxr-xr-x | make-macosx-ub.sh | 6 | ||||
-rwxr-xr-x | make-macosx.sh | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/make-macosx-ub.sh b/make-macosx-ub.sh index 987164d7..b7cb5852 100755 --- a/make-macosx-ub.sh +++ b/make-macosx-ub.sh @@ -33,9 +33,9 @@ RENDER_OBJ=" build/release-darwin-x86_64/renderer_opengl1_x86_64.dylib build/release-darwin-x86/renderer_opengl1_x86.dylib build/release-darwin-ppc/renderer_opengl1_ppc.dylib - build/release-darwin-x86_64/renderer_rend2_x86_64.dylib - build/release-darwin-x86/renderer_rend2_x86.dylib - build/release-darwin-ppc/renderer_rend2_ppc.dylib + build/release-darwin-x86_64/renderer_opengl2_x86_64.dylib + build/release-darwin-x86/renderer_opengl2_x86.dylib + build/release-darwin-ppc/renderer_opengl2_ppc.dylib " cd `dirname $0` diff --git a/make-macosx.sh b/make-macosx.sh index fbba6ca4..fe1384e7 100755 --- a/make-macosx.sh +++ b/make-macosx.sh @@ -52,7 +52,7 @@ MPACK_OBJ=" " RENDER_OBJ=" build/release-darwin-${BUILDARCH}/renderer_opengl1_${BUILDARCH}.dylib - build/release-darwin-${BUILDARCH}/renderer_rend2_${BUILDARCH}.dylib + build/release-darwin-${BUILDARCH}/renderer_opengl2_${BUILDARCH}.dylib " cd `dirname $0` |