aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoridl0r <idl0r@gentoo.org>2009-05-01 19:11:27 +0000
committeridl0r <idl0r@gentoo.org>2009-05-01 19:11:27 +0000
commit9139c85713adf2aa4610c14a36e5cc39a3c236c3 (patch)
treee26fda9e4046e811fdc624353484f600b05af670
parentRespect $PATH while looking for git, thanks to grobian. (diff)
downloadgentoolkit-9139c85713adf2aa4610c14a36e5cc39a3c236c3.tar.gz
gentoolkit-9139c85713adf2aa4610c14a36e5cc39a3c236c3.tar.bz2
gentoolkit-9139c85713adf2aa4610c14a36e5cc39a3c236c3.zip
Fixed stty call.
svn path=/; revision=571
-rwxr-xr-xtrunk/src/echangelog/echangelog2
1 files changed, 1 insertions, 1 deletions
diff --git a/trunk/src/echangelog/echangelog b/trunk/src/echangelog/echangelog
index f4a0813..0bd90fb 100755
--- a/trunk/src/echangelog/echangelog
+++ b/trunk/src/echangelog/echangelog
@@ -477,7 +477,7 @@ if ($ARGV[0]) {
if ($? != 0) {
# This usually happens when the editor got forcefully killed; and
# the terminal is probably messed up: so we reset things.
- system('/usr/bin/stty sane');
+ system('stty sane');
print STDERR "Editor died! Reverting to stdin method.\n";
undef $editor;
} else {