diff options
author | Chang Rebecca Swee Fun <rebecca.swee.fun.chang@intel.com> | 2017-05-29 12:42:29 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-06-05 17:59:40 +0100 |
commit | fac6c0fcb30d7cb49036cb32247569d65d1c5e7f (patch) | |
tree | 802932f06f76ca03fd0ec1b862741d68381b3a10 | |
parent | eb8a1cdf5106d119f77db76f9a690826af9fcda3 (diff) | |
download | openembedded-core-fac6c0fcb30d7cb49036cb32247569d65d1c5e7f.tar.gz openembedded-core-fac6c0fcb30d7cb49036cb32247569d65d1c5e7f.tar.bz2 openembedded-core-fac6c0fcb30d7cb49036cb32247569d65d1c5e7f.zip |
devshell.bbclass: clean up trailing whitespaces
Signed-off-by: Chang Rebecca Swee Fun <rebecca.swee.fun.chang@intel.com>
-rw-r--r-- | meta/classes/devshell.bbclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/classes/devshell.bbclass b/meta/classes/devshell.bbclass index 9fbe70e006..fdf7dc100f 100644 --- a/meta/classes/devshell.bbclass +++ b/meta/classes/devshell.bbclass @@ -8,7 +8,7 @@ python do_devshell () { fakeenv = d.getVar("FAKEROOTENV").split() for f in fakeenv: k = f.split("=") - d.setVar(k[0], k[1]) + d.setVar(k[0], k[1]) d.appendVar("OE_TERMINAL_EXPORTS", " " + k[0]) d.delVarFlag("do_devshell", "fakeroot") @@ -49,7 +49,7 @@ def devpyshell(d): old[3] = old[3] &~ termios.ECHO &~ termios.ICANON # &~ termios.ISIG termios.tcsetattr(fd, termios.TCSADRAIN, old) - + # No echo or buffering over the pty noechoicanon(s) @@ -145,7 +145,7 @@ python do_devpyshell() { try: devpyshell(d) except SystemExit: - # Stop the SIGTERM above causing an error exit code + # Stop the SIGTERM above causing an error exit code return finally: return |