summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorTomas Babej <tbabej@redhat.com>2015-07-02 12:38:43 +0200
committerJan Cholasta <jcholast@redhat.com>2015-07-21 17:29:33 +0200
commita487e42d3fb71ceb3128fb9a2055a5586c4ed851 (patch)
treeb3d9d6f386604d0a22ed9ffef0ee8de84358a1a0 /Makefile
parent5ea41abe9836c94579115f9b220a8205b15d520d (diff)
downloadfreeipa-a487e42d3fb71ceb3128fb9a2055a5586c4ed851.tar.gz
freeipa-a487e42d3fb71ceb3128fb9a2055a5586c4ed851.tar.xz
freeipa-a487e42d3fb71ceb3128fb9a2055a5586c4ed851.zip
ipaplatform: Add constants submodule
Introduce a ipaplatform/constants.py file to store platform related constants, which are not paths. Reviewed-By: Martin Basti <mbasti@redhat.com> Reviewed-By: Petr Spacek <pspacek@redhat.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index abf583829..3c81466d3 100644
--- a/Makefile
+++ b/Makefile
@@ -159,10 +159,11 @@ version-update: release-update
if [ "$(SUPPORTED_PLATFORM)" != "" ]; then \
sed -e s/__PLATFORM__/$(SUPPORTED_PLATFORM)/ \
ipaplatform/__init__.py.in > ipaplatform/__init__.py; \
- rm -f ipaplatform/paths.py ipaplatform/services.py ipaplatform/tasks.py; \
+ rm -f ipaplatform/paths.py ipaplatform/services.py ipaplatform/tasks.py ipaplatform/constants.py; \
ln -s $(SUPPORTED_PLATFORM)/paths.py ipaplatform/paths.py; \
ln -s $(SUPPORTED_PLATFORM)/services.py ipaplatform/services.py; \
ln -s $(SUPPORTED_PLATFORM)/tasks.py ipaplatform/tasks.py; \
+ ln -s $(SUPPORTED_PLATFORM)/constants.py ipaplatform/constants.py; \
fi
if [ "$(SKIP_API_VERSION_CHECK)" != "yes" ]; then \