summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/python/makefile b/python/makefile
index abe08d50..12dea22f 100644
--- a/python/makefile
+++ b/python/makefile
@@ -9,13 +9,15 @@ include ../buildlib/defaults.mak
MODULE=apt_pkg
SLIBS = -lapt-pkg
LIB_MAKES = apt-pkg/makefile
-SOURCE = apt_pkgmodule.cc configuration.cc generic.cc tag.cc string.cc \
- cache.cc pkgrecords.cc
+APT_PKG_SRC = apt_pkgmodule.cc configuration.cc generic.cc tag.cc string.cc \
+ cache.cc pkgrecords.cc
+SOURCE := $(APT_PKG_SRC)
include $(PYTHON_H)
# The apt_int module..
MODULE=apt_inst
SLIBS = -lapt-inst -lapt-pkg
LIB_MAKES = apt-inst/makefile
-SOURCE = apt_instmodule.cc tar.cc generic.cc
+APT_INST_SRC = apt_instmodule.cc tar.cc generic.cc
+SOURCE := $(APT_INST_SRC)
include $(PYTHON_H)