diff options
| author | Eli Zaretskii | 2002-05-31 15:13:32 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2002-05-31 15:13:32 +0000 |
| commit | 86bbfe7774359a43ecdb474845d24a6bfd825ba7 (patch) | |
| tree | 1bf63e4d88235ed9087545770d806e4ee9e79cb4 | |
| parent | 5834ac9207ea4856abd41efcf4666adb46dce2ec (diff) | |
| download | emacs-86bbfe7774359a43ecdb474845d24a6bfd825ba7.tar.gz emacs-86bbfe7774359a43ecdb474845d24a6bfd825ba7.zip | |
Handle the case when lispintro is truncated to lispintr.
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | config.bat | 5 |
2 files changed, 8 insertions, 1 deletions
| @@ -1,3 +1,7 @@ | |||
| 1 | 2002-05-31 Eli Zaretskii <eliz@is.elta.co.il> | ||
| 2 | |||
| 3 | * config.bat: Handle the case when lispintro is truncated to lispintr. | ||
| 4 | |||
| 1 | 2002-05-26 Paul Eggert <eggert@twinsun.com> | 5 | 2002-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 | |||
| 229 | cd .. | 229 | cd .. |
| 230 | rem ---------------------------------------------------------------------- | 230 | rem ---------------------------------------------------------------------- |
| 231 | Echo Configuring the ELisp Introduction manual directory... | 231 | Echo Configuring the ELisp Introduction manual directory... |
| 232 | cd lispintro | 232 | Rem The two variants for the line below is for when the shell |
| 233 | Rem supports long file names but DJGPP does not | ||
| 234 | if exist lispintro\Makefile.in cd lispintro | ||
| 235 | if exist lispintr\Makefile.in cd lispintr | ||
| 233 | sed -f ../msdos/sed6.inp < Makefile.in > Makefile | 236 | sed -f ../msdos/sed6.inp < Makefile.in > Makefile |
| 234 | cd .. | 237 | cd .. |
| 235 | rem ---------------------------------------------------------------------- | 238 | rem ---------------------------------------------------------------------- |