From 67de11f253d4d033d8619caa02d8bdccde2a566f Mon Sep 17 00:00:00 2001 From: Jean Baptiste Favre Date: Sat, 24 Aug 2019 08:00:22 +0100 Subject: [PATCH] fix-python-check-unused-dependencies Gbp-Pq: Name 0008-fix-python-check-unused-dependencies.patch --- tools/check-unused-dependencies | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tools/check-unused-dependencies b/tools/check-unused-dependencies index 431d1846..475bdaa8 100755 --- a/tools/check-unused-dependencies +++ b/tools/check-unused-dependencies @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with @@ -53,7 +53,8 @@ def get_dependencies(program): 'libdl.so.', # Because we add -ldl to LIBS 'libgcc_s.so.', 'libm.so.', # Why does Libtool call ld with -lm? - 'libpthread.so.' # Because we add -lpthread to LIBS + 'libpthread.so.', # Because we add -lpthread to LIBS + 'libfakeroot-sysv.so' ])): continue -- 2.30.2