* [PATCH 0/1] Fix texinfo-dummy-native bug causing false-positive assertion errors
@ 2014-06-13 22:07 Max Eliaser
2014-06-13 22:07 ` [PATCH 1/1] texinfo-dummy-native: Fix dummy scripts failing when paths contain capital Es Max Eliaser
0 siblings, 1 reply; 2+ messages in thread
From: Max Eliaser @ 2014-06-13 22:07 UTC (permalink / raw)
To: openembedded-core
Hello list,
This is a simple one-line fix for Denys Dmytriyenko's bug.
Regards,
-Max Eliaser
The following changes since commit 5452824960e8e77005a25ac11fd069d927523d3e:
default-distrovars.inc: Remove unused variable 'LIMIT_BUILT_LOCALES' (2014-06-13 13:08:44 +0100)
are available in the git repository at:
git://git.yoctoproject.org/poky-contrib meliaser/fix-texinfo-dummy-capital-E
http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=meliaser/fix-texinfo-dummy-capital-E
Max Eliaser (1):
texinfo-dummy-native: Fix dummy scripts failing when paths contain
capital Es
meta/recipes-extended/texinfo-dummy-native/texinfo-dummy/template.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
1.8.3.2
^ permalink raw reply [flat|nested] 2+ messages in thread
* [PATCH 1/1] texinfo-dummy-native: Fix dummy scripts failing when paths contain capital Es
2014-06-13 22:07 [PATCH 0/1] Fix texinfo-dummy-native bug causing false-positive assertion errors Max Eliaser
@ 2014-06-13 22:07 ` Max Eliaser
0 siblings, 0 replies; 2+ messages in thread
From: Max Eliaser @ 2014-06-13 22:07 UTC (permalink / raw)
To: openembedded-core
This was an issue in the command-line argument parsing. It was the cause of
the bug reported on the OE-core mailing list by Denys Dmytriyenko.
Signed-off-by: Max Eliaser <max.eliaser@intel.com>
---
meta/recipes-extended/texinfo-dummy-native/texinfo-dummy/template.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta/recipes-extended/texinfo-dummy-native/texinfo-dummy/template.py b/meta/recipes-extended/texinfo-dummy-native/texinfo-dummy/template.py
index 4dc31a9..b0ebf75 100644
--- a/meta/recipes-extended/texinfo-dummy-native/texinfo-dummy/template.py
+++ b/meta/recipes-extended/texinfo-dummy-native/texinfo-dummy/template.py
@@ -104,7 +104,7 @@ while arg_idx < len (sys.argv):
# Check for functionality that isn't implemented yet.
else:
- assert arg[1] == '-' or 'E' not in arg or \
+ assert arg[0] != '-' or arg[1] == '-' or 'E' not in arg or \
this_binary in simple_binaries, \
"-E option not yet supported" + stub_msg
--
1.8.3.2
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-06-13 22:10 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-13 22:07 [PATCH 0/1] Fix texinfo-dummy-native bug causing false-positive assertion errors Max Eliaser
2014-06-13 22:07 ` [PATCH 1/1] texinfo-dummy-native: Fix dummy scripts failing when paths contain capital Es Max Eliaser
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.