diff options
author | Eli Zaretskii <eliz@gnu.org> | 2010-06-26 17:36:27 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2010-06-26 17:36:27 +0300 |
commit | 394f238630dc4904435c15dad92727a900916b97 (patch) | |
tree | 660cb2890faea0ce83c4cfcced3a4c8b7773d27c /config.bat | |
parent | 0b7889fc3322ea2a294aab4257544df06d87ad65 (diff) | |
download | emacs-394f238630dc4904435c15dad92727a900916b97.tar.gz |
Fix the MS-DOS build due to changes in configury.
config.bat: Remove white space around "+" in COPY commands.
msods/mainmake.v2 (version): Use emacs_version[] in src/emacs.c
instead of lisp/version.el (see 2010-05-15T21:11:37Z!raeburn@raeburn.org).
msdos/sed1v2.inp (MKDEPDIR): Edit to empty.
Delete lines in rules that invoke $(MKDEPDIR).
Fix editing rules that begin with "cd ../lisp".
Edit out sh if-then-else-fi constructs that test ${CANNOT_DUMP}.
Edit out "|| exit ;\" constructs in emacs${EXEEXT} rule.
Diffstat (limited to 'config.bat')
-rw-r--r-- | config.bat | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config.bat b/config.bat index a37a7a70085..aac4e108b09 100644 --- a/config.bat +++ b/config.bat @@ -191,7 +191,7 @@ if exist dir.h ren dir.h vmsdir.h rem Create "makefile" from "makefile.in".
rm -f Makefile makefile.tmp
-copy Makefile.in + deps.mk makefile.tmp
+copy Makefile.in+deps.mk makefile.tmp
sed -f ../msdos/sed1v2.inp <makefile.tmp >Makefile
rm -f makefile.tmp
|