From c515b5c1f131125658e296642bf55b23a210e565 Mon Sep 17 00:00:00 2001 From: Disconnect3d Date: Tue, 9 Jul 2019 20:06:52 +0200 Subject: scripts/stripdecls.py #10458 Remove the `only_static = False` which clobbers the `--static` CLI argument. --- scripts/stripdecls.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'scripts') diff --git a/scripts/stripdecls.py b/scripts/stripdecls.py index 34be2a1578..a73b1980cb 100755 --- a/scripts/stripdecls.py +++ b/scripts/stripdecls.py @@ -18,8 +18,6 @@ Strip = namedtuple('Strip', 'start_line start_column end_line end_column') def main(progname, cfname, only_static, move_all): - only_static = False - cfname = os.path.abspath(os.path.normpath(cfname)) hfname1 = os.path.splitext(cfname)[0] + os.extsep + 'h' -- cgit