From 984c8e74ab838ab24ff35100e34573c5a3213711 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Thu, 28 Mar 2013 16:58:59 +0100 Subject: Fix kdedistutils FTBFS with newer libtool --- src/kdedistutils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/kdedistutils.py b/src/kdedistutils.py index 0b475e5..18a06bb 100644 --- a/src/kdedistutils.py +++ b/src/kdedistutils.py @@ -811,6 +811,7 @@ class BuildKControlModule(Command): # Link the resulting object file to create a shared library. cmdlist = ['libtool'] cmdlist.append("--mode=link") + cmdlist.append("--tag=LD") # Grab the linker command name cmdlist.append(sysconfig.get_config_var("LDSHARED").split()[0]) @@ -1735,6 +1736,7 @@ class BuildTdeioslave(Command): # Link the resulting object file to create a shared library. cmdlist = ['libtool'] cmdlist.append("--mode=link") + cmdlist.append("--tag=LD") # Grab the linker command name cmdlist.append(sysconfig.get_config_var("LDSHARED").split()[0]) -- cgit v1.2.1