The default make tries to do
inimp -interaction=nonstopmode /usr/local/teTeX/texmf/metapost/base/mfplain.mp dump
if you have inimp and not initmetamosp
unfortunately, inimp doesn't take `-interaction=nonstopmode' as an
argument. It's in nonstopmode anyway.
So in stepmake/aclocal.m4 change
: ${INIMETAPOST_FLAGS='-interaction=nonstopmode'}
to
if test ${INIMETAPOST} = "inimp" ; then
: ${INIMETAPOST_FLAGS=''}
else
: ${INIMETAPOST_FLAGS='-interaction=nonstopmode'}
fi
Peter C
