mirror of
https://github.com/LCPQ/quantum_package
synced 2024-11-03 20:54:00 +01:00
Fixed symlinks
This commit is contained in:
parent
7ac793cc52
commit
026383b429
@ -266,7 +266,7 @@ def ninja_ezfio_rule():
|
|||||||
|
|
||||||
install_lib_ezfio = join(QP_ROOT, 'install', 'EZFIO', "lib", "libezfio_irp.a")
|
install_lib_ezfio = join(QP_ROOT, 'install', 'EZFIO', "lib", "libezfio_irp.a")
|
||||||
l_cmd = ["cd {0}".format(QP_EZFIO)] + l_flag
|
l_cmd = ["cd {0}".format(QP_EZFIO)] + l_flag
|
||||||
l_cmd += ["rm -f make.config ; ninja && ln -sf {0} {1}".format(install_lib_ezfio, EZFIO_LIB)]
|
l_cmd += ["rm -f make.config ; ninja && rm -f {1} ; ln -sf {0} {1}".format(install_lib_ezfio, EZFIO_LIB)]
|
||||||
|
|
||||||
l_string = ["rule build_ezfio",
|
l_string = ["rule build_ezfio",
|
||||||
" command = {0}".format(" ; ".join(l_cmd)),
|
" command = {0}".format(" ; ".join(l_cmd)),
|
||||||
@ -307,7 +307,7 @@ def ninja_symlink_rule():
|
|||||||
"""
|
"""
|
||||||
Return the command to create for the symlink
|
Return the command to create for the symlink
|
||||||
"""
|
"""
|
||||||
return ["rule build_symlink", " command = ln -sf $in $out", ""]
|
return ["rule build_symlink", " command = rm -f $out ; ln -sf $in $out", ""]
|
||||||
|
|
||||||
|
|
||||||
def ninja_symlink_build(path_module, l_symlink):
|
def ninja_symlink_build(path_module, l_symlink):
|
||||||
|
Loading…
Reference in New Issue
Block a user