From 828fe2af88adfade885ee468c32c87464e989048 Mon Sep 17 00:00:00 2001 From: rdb Date: Thu, 19 Nov 2015 02:17:06 +0100 Subject: [PATCH] Install panda3d runtime to /usr/local/bin/ to fix SIP error on El Capitan --- direct/src/plugin_installer/make_installer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/direct/src/plugin_installer/make_installer.py b/direct/src/plugin_installer/make_installer.py index 7767ca425a..772962348e 100755 --- a/direct/src/plugin_installer/make_installer.py +++ b/direct/src/plugin_installer/make_installer.py @@ -440,7 +440,7 @@ def makeInstaller(): if not os.path.exists(tmproot): os.makedirs(tmproot) dst_npapi = os.path.join(tmproot, "Library", "Internet Plug-Ins", npapi) - dst_panda3d = os.path.join(tmproot, "usr", "bin", panda3d) + dst_panda3d = os.path.join(tmproot, "usr", "local", "bin", panda3d) dst_panda3dapp = os.path.join(tmproot, "Applications", panda3dapp) if not os.path.exists(dst_npapi): os.makedirs(os.path.dirname(dst_npapi)) if not os.path.exists(dst_panda3d): os.makedirs(os.path.dirname(dst_panda3d))