Skip to content

Commit

Permalink
build/osx/OSConsX.py: Add comments regarding unused variables
Browse files Browse the repository at this point in the history
  • Loading branch information
Holzhaus committed Mar 7, 2020
1 parent 346cf08 commit 78a90a8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions build/osx/OSConsX.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit 78a90a8

Please sign in to comment.