aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--config.bat5
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 331350790a5..1b3cd9b2c58 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
12002-05-31 Eli Zaretskii <eliz@is.elta.co.il>
2
3 * config.bat: Handle the case when lispintro is truncated to lispintr.
4
12002-05-26 Paul Eggert <eggert@twinsun.com> 52002-05-26 Paul Eggert <eggert@twinsun.com>
2 6
3 * config.guess, config.sub: Updated from master source. 7 * 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
229cd .. 229cd ..
230rem ---------------------------------------------------------------------- 230rem ----------------------------------------------------------------------
231Echo Configuring the ELisp Introduction manual directory... 231Echo Configuring the ELisp Introduction manual directory...
232cd lispintro 232Rem The two variants for the line below is for when the shell
233Rem supports long file names but DJGPP does not
234if exist lispintro\Makefile.in cd lispintro
235if exist lispintr\Makefile.in cd lispintr
233sed -f ../msdos/sed6.inp < Makefile.in > Makefile 236sed -f ../msdos/sed6.inp < Makefile.in > Makefile
234cd .. 237cd ..
235rem ---------------------------------------------------------------------- 238rem ----------------------------------------------------------------------