do not link core libraries in plugins

This commit is contained in:
roberto@debian32
2011-05-11 12:28:15 +02:00
parent 25ac86393f
commit f3388db8ba
+1 -2
View File
@@ -531,11 +531,10 @@ def build_plugin(path, uc, cflags, ldflags, libs, name = None):
p_cflags = cflags[:]
p_ldflags = ldflags[:]
p_libs = libs[:]
p_cflags += up.CFLAGS
p_ldflags += up.LDFLAGS
p_libs += up.LIBS
p_libs = up.LIBS
p_cflags.insert(0, '-I.')