From 42e9028868bdbf0c9e007bf446608c6eba4077bc Mon Sep 17 00:00:00 2001 From: Jon Turney Date: Tue, 9 Apr 2019 18:05:00 +0100 Subject: ninja: Remove use of unset ninja variable 'aliasing' Setting this variable to contain additional commands to symlink shlib aliases was removed in commit c0bf3e8d, so it's always unset now, and thus does nothing. --- mesonbuild/backend/ninjabackend.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mesonbuild/backend/ninjabackend.py b/mesonbuild/backend/ninjabackend.py index 8edaeeca8..89fa5434c 100644 --- a/mesonbuild/backend/ninjabackend.py +++ b/mesonbuild/backend/ninjabackend.py @@ -1473,10 +1473,10 @@ int dummy; if compiler.can_linker_accept_rsp(): command_template = ''' command = {executable} @$out.rsp rspfile = $out.rsp - rspfile_content = $ARGS {output_args} $in $LINK_ARGS $aliasing + rspfile_content = $ARGS {output_args} $in $LINK_ARGS ''' else: - command_template = ' command = {executable} $ARGS {output_args} $in $LINK_ARGS $aliasing\n' + command_template = ' command = {executable} $ARGS {output_args} $in $LINK_ARGS\n' command = command_template.format( executable=' '.join(compiler.get_linker_exelist()), output_args=' '.join(compiler.get_linker_output_args('$out')) -- cgit v1.2.3