SConstruct (11928:9b1161fa252c) SConstruct (11944:00c719186596)
1# -*- mode:python -*-
2
3# Copyright (c) 2013, 2015, 2016 ARM Limited
4# All rights reserved.
5#
6# The license below extends only to copyright in the software and shall
7# not be construed as granting a license to any other intellectual
8# property including but not limited to intellectual property relating

--- 385 unchanged lines hidden (view full) ---

394 return
395
396 if hook.islink():
397 print "Warning: Removing broken symlink for hook %s." % hook_name
398 os.unlink(hook.get_abspath())
399
400 if not git_hooks.exists():
401 mkdir(git_hooks.get_abspath())
1# -*- mode:python -*-
2
3# Copyright (c) 2013, 2015, 2016 ARM Limited
4# All rights reserved.
5#
6# The license below extends only to copyright in the software and shall
7# not be construed as granting a license to any other intellectual
8# property including but not limited to intellectual property relating

--- 385 unchanged lines hidden (view full) ---

394 return
395
396 if hook.islink():
397 print "Warning: Removing broken symlink for hook %s." % hook_name
398 os.unlink(hook.get_abspath())
399
400 if not git_hooks.exists():
401 mkdir(git_hooks.get_abspath())
402 git_hooks.clear()
402
403 abs_symlink_hooks = git_hooks.islink() and \
404 os.path.isabs(os.readlink(git_hooks.get_abspath()))
405
406 # Use a relative symlink if the hooks live in the source directory,
407 # and the hooks directory is not a symlink to an absolute path.
408 if hook.is_under(main.root) and not abs_symlink_hooks:
409 script_path = os.path.relpath(

--- 1191 unchanged lines hidden ---
403
404 abs_symlink_hooks = git_hooks.islink() and \
405 os.path.isabs(os.readlink(git_hooks.get_abspath()))
406
407 # Use a relative symlink if the hooks live in the source directory,
408 # and the hooks directory is not a symlink to an absolute path.
409 if hook.is_under(main.root) and not abs_symlink_hooks:
410 script_path = os.path.relpath(

--- 1191 unchanged lines hidden ---