summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorJan Holthuis <jan.holthuis@ruhr-uni-bochum.de>2020-03-08 00:38:24 +0100
committerJan Holthuis <jan.holthuis@ruhr-uni-bochum.de>2020-03-08 00:38:24 +0100
commit78a90a86f45b9e17dc2e163afff902427da08ab4 (patch)
tree890a3c3c264f9c7adb4180f782a2399ea0fe8528 /build
parent346cf08d741e5880d1afae1f0aafc89983f09039 (diff)
build/osx/OSConsX.py: Add comments regarding unused variables
Diffstat (limited to 'build')
-rw-r--r--build/osx/OSConsX.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/build/osx/OSConsX.py b/build/osx/OSConsX.py
index aa61f8a7cf..1aa7da5f72 100644
--- a/build/osx/OSConsX.py
+++ b/build/osx/OSConsX.py
@@ -505,6 +505,7 @@ def emit_app(target, source, env):
# idea: hide these in the env[]?
bundle = Dir(str(bundle)) # coerce the bundle target into being a Dir
contents = Dir(os.path.join(str(bundle), "Contents"))
+ # Following variable is unused
# frameworks = Dir(
# os.path.join(str(contents), "Frameworks")
# ) # we put both frameworks and standard unix sharedlibs in here
@@ -615,6 +616,7 @@ def do_codesign(target, source, env):
keychain = env.get("CODESIGN_KEYCHAIN", None)
keychain_password = env.get("CODESIGN_KEYCHAIN_PASSWORD", None)
+ # Following variable is unused
# installer_identity = env.get("CODESIGN_INSTALLER_IDENTITY", None)
application_identity = env.get("CODESIGN_APPLICATION_IDENTITY", None)
entitlements = env.get("CODESIGN_ENTITLEMENTS", None)