diff options
author | Stepan Kasal <kasal@ucw.cz> | 2006-10-24 18:25:30 +0000 |
---|---|---|
committer | Stepan Kasal <kasal@ucw.cz> | 2006-10-24 18:25:30 +0000 |
commit | 6f3e11dfb1398c9c64469a27f97e1d4079cd35da (patch) | |
tree | c9a93a364da8e95517fcbd09a924cc1706003ec4 /bin | |
parent | 627a3683fd29f512d60b85ce8753d81f85a54a73 (diff) | |
download | autoconf-6f3e11dfb1398c9c64469a27f97e1d4079cd35da.tar.gz |
* bin/autom4te.in (handle_m4): Do not redirect stdin to
/dev/null since the heuristics for interactive behaviour was
fixed in CVS m4.
Diffstat (limited to 'bin')
-rw-r--r-- | bin/autom4te.in | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/bin/autom4te.in b/bin/autom4te.in index 0807cd14..77d7ef7d 100644 --- a/bin/autom4te.in +++ b/bin/autom4te.in @@ -454,8 +454,6 @@ sub handle_m4 ($@) # Run m4. # - # Neutralize its stdin, so that GNU M4 1.5 doesn't neutralize SIGINT. - # # We don't output directly to the cache files, to avoid problems # when we are interrupted (that leaves corrupted files). xsystem ("$m4" @@ -465,7 +463,6 @@ sub handle_m4 ($@) . " @M4_DEBUGFILE@=$tcache" . $req->id . "t" . join (' --trace=', '', sort @macro) . " " . files_to_options (@ARGV) - . ' </dev/null' . " >$ocache" . $req->id . "t"); # Everything went ok: preserve the outputs. |