Check for Mmakefile' as an alternative to Mmake'.

Estimated hours taken: 0.25

scripts/mmake.in:
	Check for `Mmakefile' as an alternative to `Mmake'.
	(This change is so I can rename scripts/Mmake as Mmakefile
	to avoid a conflict with scripts/mmake on systems with
	case-insensitive file systems, e.g. Windows 95.)
This commit is contained in:
Fergus Henderson
1996-05-25 03:42:17 +00:00
parent f89d46df5e
commit d2457986f8

View File

@@ -82,10 +82,14 @@ EOF
esac
done
if [ -f Mmake ]; then
mmake="Mmake"
if [ -f Mmakefile ]; then
mmake="Mmakefile"
else
mmake=""
if [ -f Mmake ]; then
mmake="Mmake"
else
mmake=""
fi
fi
if [ "`echo *.dep`" = "*.dep" ]; then
deps=""