]> git.sesse.net Git - vlc/commitdiff
python bindings: do not link with unecessary libs (spotted by courmisch)
authorOlivier Aubert <olivier.aubert@liris.cnrs.fr>
Tue, 4 Mar 2008 12:48:30 +0000 (13:48 +0100)
committerOlivier Aubert <olivier.aubert@liris.cnrs.fr>
Tue, 4 Mar 2008 12:49:33 +0000 (13:49 +0100)
bindings/python/setup.py

index 8efd552f3d17f6485cf1626dc7d3e4569336a509..5589b7f9d733422e059a2862c77b7fee5f9ec028 100644 (file)
@@ -71,7 +71,7 @@ def get_cflags():
 def get_ldflags():
     vlcconfig=get_vlcconfig()
     if vlcconfig is None:
-        return [ '-lvlc', '-lvlc-control' ]
+        return [ '-lvlc-control' ]
     else:
        ldflags = []
        if os.sys.platform == 'darwin':