diff options
author | Alexandru DAMIAN <alexandru.damian@intel.com> | 2015-06-17 13:31:06 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-06-26 09:27:32 +0100 |
commit | 287b49a35b3f06b302ee199ed4b2d123f1aae58c (patch) | |
tree | a13e6175c9d7a5ab54188cdf5f61a14e460da76f /bitbake/lib/toaster/toastermain | |
parent | 35fe3117abb5885191d89e934183e211e94a71fe (diff) | |
download | poky-287b49a35b3f06b302ee199ed4b2d123f1aae58c.tar.gz |
bitbake: toaster: bring django-aggregate-if into the project
We bring the django-aggregate-if module (with minor changes to import)
into the project.
(Bitbake rev: 4b92add34167304b45c66b9726cbc64bc0f74d9f)
Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastermain')
-rw-r--r-- | bitbake/lib/toaster/toastermain/settings.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/toastermain/settings.py b/bitbake/lib/toaster/toastermain/settings.py index 141ad08877..60e80de2f6 100644 --- a/bitbake/lib/toaster/toastermain/settings.py +++ b/bitbake/lib/toaster/toastermain/settings.py | |||
@@ -393,3 +393,12 @@ class InvalidString(str): | |||
393 | "Undefined variable or unknown value for: \"%s\"" % other) | 393 | "Undefined variable or unknown value for: \"%s\"" % other) |
394 | 394 | ||
395 | TEMPLATE_STRING_IF_INVALID = InvalidString("%s") | 395 | TEMPLATE_STRING_IF_INVALID = InvalidString("%s") |
396 | |||
397 | import sys | ||
398 | sys.path.append( | ||
399 | os.path.join( | ||
400 | os.path.join( | ||
401 | os.path.dirname(os.path.dirname(os.path.abspath(__file__))), | ||
402 | "contrib"), | ||
403 | "django-aggregate-if-master") | ||
404 | ) | ||