diff options
author | Steve Reinhardt <stever@eecs.umich.edu> | 2005-09-29 16:03:36 -0400 |
---|---|---|
committer | Steve Reinhardt <stever@eecs.umich.edu> | 2005-09-29 16:03:36 -0400 |
commit | 70a799a8cf31ce67389093037719f23e453b3898 (patch) | |
tree | 8523d432eb160fe9b37b09ecd9335780efb7002d /util | |
parent | a7807792be11dddcec3dbcf2e4092a21b232c3a3 (diff) | |
download | gem5-70a799a8cf31ce67389093037719f23e453b3898.tar.xz |
Fix for qdo & new pool node build.
util/qdo:
unset PROMPT_COMMAND in shell in case system sets
it for us.
--HG--
extra : convert_revision : f9f20f7dc6b9585b60f3ce53aadd06e7d64f5179
Diffstat (limited to 'util')
-rwxr-xr-x | util/qdo | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -92,7 +92,7 @@ class Shell(pexpect.spawn): self.kill(15) self.close(wait=True) sys.exit(1) - self.do_command('PS1="qdo$ "') + self.do_command('unset PROMPT_COMMAND; PS1="qdo$ "') # version of expect that updates full_output too def expect(self, regexp, timeout = -1): |