From: Eli Zaretskii Date: Fri, 31 May 2002 15:13:32 +0000 (+0000) Subject: Handle the case when lispintro is truncated to lispintr. X-Git-Tag: ttn-vms-21-2-B4~14802 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=86bbfe7774359a43ecdb474845d24a6bfd825ba7;p=emacs.git Handle the case when lispintro is truncated to lispintr. --- diff --git a/ChangeLog b/ChangeLog index 331350790a5..1b3cd9b2c58 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2002-05-31 Eli Zaretskii + + * config.bat: Handle the case when lispintro is truncated to lispintr. + 2002-05-26 Paul Eggert * config.guess, config.sub: Updated from master source. diff --git a/config.bat b/config.bat index cba230f9d87..5d9f7718c7f 100644 --- a/config.bat +++ b/config.bat @@ -229,7 +229,10 @@ sed -f ../msdos/sed6.inp < Makefile.in > Makefile cd .. rem ---------------------------------------------------------------------- Echo Configuring the ELisp Introduction manual directory... -cd lispintro +Rem The two variants for the line below is for when the shell +Rem supports long file names but DJGPP does not +if exist lispintro\Makefile.in cd lispintro +if exist lispintr\Makefile.in cd lispintr sed -f ../msdos/sed6.inp < Makefile.in > Makefile cd .. rem ----------------------------------------------------------------------