diff options
author | Po Lu <luangruo@yahoo.com> | 2022-02-11 20:19:34 +0800 |
---|---|---|
committer | Po Lu <luangruo@yahoo.com> | 2022-02-11 20:19:34 +0800 |
commit | f726ca161c2617a400ce3823926813134ace287e (patch) | |
tree | 446fae0221e260b4face5d4472857571aad5ebdc /config.bat | |
parent | 20da50619fd5b65e6d0c18c48d10ab1ec9067b63 (diff) | |
download | emacs-f726ca161c2617a400ce3823926813134ace287e.tar.gz |
Fix the DJGPP port
* config.bat:
* msdos/sed1v2.inp:
* msdos/sedlibmk.inp: Update for present Emacs.
* src/Makefile.in (MAKE_PDUMPER_FINGERPRINT): Fix indentation
to not confuse sed*.inp.
* src/conf_post.h [MSDOS]: Define some things gnulib wants.
Diffstat (limited to 'config.bat')
-rw-r--r-- | config.bat | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config.bat b/config.bat index 29742eec52b..d647ad5e679 100644 --- a/config.bat +++ b/config.bat @@ -310,6 +310,9 @@ rm -f makefile.tmp sed -f ../msdos/sedlibcf.inp < gnulib.mk-in > gnulib.tmp
sed -f ../msdos/sedlibmk.inp < gnulib.tmp > gnulib.mk
rm -f gnulib.tmp
+Rem Create directorys in lib/ that MKDIR_P is supposed to create
+Rem but I have no idea how to do that on MS-DOS.
+mkdir lib\sys
Rem Create .d files for new files in lib/ and lib/malloc/
If Not Exist deps\stamp mkdir deps
for %%f in (*.c) do @call ..\msdos\depfiles.bat %%f
|