From: Michael Tremer Date: Thu, 24 Jan 2013 01:36:10 +0000 (+0100) Subject: Make a variable that contains all python files. X-Git-Tag: 0.9.25~21 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8be83109b81fde156138afc7de9fb248095cca35;p=pakfire.git Make a variable that contains all python files. --- diff --git a/Makeconfig b/Makeconfig index 0c6735316..e717238f6 100644 --- a/Makeconfig +++ b/Makeconfig @@ -39,6 +39,8 @@ ifeq "$(DEBIAN)" "1" else PYTHON_DIR = $(LIBDIR)/python$(PYTHON_VERSION)/site-packages endif +PYTHON_FILES = $(addsuffix /*.py,$(addprefix python/,$(PYTHON_MODULES))) +PYTHON_FILES += tools/pakfire-multicall.py # The place, where all internally used scripts and bins are copied. SCRIPT_DIR = $(PREFIX)/lib/$(PACKAGE_NAME) @@ -47,5 +49,4 @@ TOP := $(dir $(lastword $(MAKEFILE_LIST))) # A list of all files that contain translations and need to # be indexed. -TRANS_FILES = $(addsuffix /*.py,$(addprefix python/,$(PYTHON_MODULES))) -TRANS_FILES += python/src/*.c tools/pakfire-multicall.py +TRANS_FILES = $(PYTHON_FILES) python/src/*.c