aboutsummaryrefslogtreecommitdiff
path: root/conf.py
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2015-08-26 09:53:25 +0200
committerKarel Kočí <cynerd@email.cz>2015-08-26 10:13:40 +0200
commit0688647f2f69d1bee1ecc76338190e6a12209da5 (patch)
treeb92d6dce0f36c637b071a0f4fe957e724d330d66 /conf.py
parentaa7d9d6d93c1489e3136f8ad2fb88d32f16a2496 (diff)
downloadlinux-conf-perf-0688647f2f69d1bee1ecc76338190e6a12209da5.tar.gz
linux-conf-perf-0688647f2f69d1bee1ecc76338190e6a12209da5.tar.bz2
linux-conf-perf-0688647f2f69d1bee1ecc76338190e6a12209da5.zip
Add dependency to .conf.mk on .target in Makefile
If .target file is changed (=target changed), makefile configuration should been regenerated.
Diffstat (limited to 'conf.py')
-rw-r--r--conf.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/conf.py b/conf.py
index b8204cb..eb8e7ac 100644
--- a/conf.py
+++ b/conf.py
@@ -1,4 +1,5 @@
import os
+import sys
import re
import importlib.machinery
@@ -126,6 +127,8 @@ if os.path.isfile(os.path.join(absroot, '.target')):
if not re.match('__*__', name):
vars()[name] = vars(ovconf)[name]
else:
- print("W: No target specifier. Write target to .target file.")
+ print("E: Invalid target specifier. Write valid target to .target file.")
+ sys.exit(-99)
else:
- print("W: No target specifier. Write target to .target file.")
+ print("E: No target specifier. Write target to .target file.")
+ sys.exit(-99)