From: Steve Reinhardt Date: Thu, 29 Sep 2005 20:03:36 +0000 (-0400) Subject: Fix for qdo & new pool node build. X-Git-Tag: m5_1.1~10 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=70a799a8cf31ce67389093037719f23e453b3898;p=gem5.git 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 --- diff --git a/util/qdo b/util/qdo index ca9ffc416..3a475b420 100755 --- a/util/qdo +++ b/util/qdo @@ -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):