Commit 3911abb2 by Richard Stallman

(EXINIT): Set it to `true', not null.

From-SVN: r2717
parent 14f3e886
...@@ -18,9 +18,11 @@ INPUT=${2-${INPUT-/usr/include}} ...@@ -18,9 +18,11 @@ INPUT=${2-${INPUT-/usr/include}}
# unrecognizable. # unrecognizable.
TERM=unknown TERM=unknown
export TERM export TERM
# This prevents /bin/ex from failing if the EXINIT environment variable # This prevents two problems:
# was set to something invalid. # Either ex might find a .exrc file and get confused,
EXINIT="" # or ex might complain if the EXINIT variable is invalid.
# We know there is no .exrc in the GCC source.
EXINIT=true
export EXINIT export EXINIT
# Directory in which to store the results. # Directory in which to store the results.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment