aboutsummaryrefslogtreecommitdiffstats
path: root/config.bat
diff options
context:
space:
mode:
authorEli Zaretskii2011-02-26 11:27:05 +0200
committerEli Zaretskii2011-02-26 11:27:05 +0200
commit945d8b4444ccea2a3c3e9ac69b679c80ee0e00a5 (patch)
tree24d998feca73ccde4d8634cad6fbc16f68bdd551 /config.bat
parent00030ef0b68cc8ce0dcb5ec8f3f95709e1066bc2 (diff)
downloademacs-945d8b4444ccea2a3c3e9ac69b679c80ee0e00a5.tar.gz
emacs-945d8b4444ccea2a3c3e9ac69b679c80ee0e00a5.zip
Fix the MS-DOS configury due to new gnulib modules.
config.bat: Rename stdint.in.h and sys_stat.in.h. Call depfiles.bat even if lib/deps already exist. msdos/depfiles.bat: Create a dummy .Po file only if a file by the same name does not already exist in the deps/ subdirectory.
Diffstat (limited to 'config.bat')
-rw-r--r--config.bat9
1 files changed, 6 insertions, 3 deletions
diff --git a/config.bat b/config.bat
index 7ebfc74b801..4288f6537e6 100644
--- a/config.bat
+++ b/config.bat
@@ -280,17 +280,20 @@ cd lib
280Rem Rename files like djtar on plain DOS filesystem would. 280Rem Rename files like djtar on plain DOS filesystem would.
281If Exist c++defs.h update c++defs.h cxxdefs.h 281If Exist c++defs.h update c++defs.h cxxdefs.h
282If Exist getopt.in.h update getopt.in.h getopt.in-h 282If Exist getopt.in.h update getopt.in.h getopt.in-h
283If Exist stddef.in.h update stddef.in.h stddef.in-h
284If Exist stdbool.in.h update stdbool.in.h stdbool.in-h 283If Exist stdbool.in.h update stdbool.in.h stdbool.in-h
284If Exist stddef.in.h update stddef.in.h stddef.in-h
285If Exist stdint.in.h update stdint.in.h stdint.in-h
285If Exist stdlib.in.h update stdlib.in.h stdlib.in-h 286If Exist stdlib.in.h update stdlib.in.h stdlib.in-h
287If Exist sys_stat.in.h update sys_stat.in.h sys_stat.in-h
286If Exist time.in.h update time.in.h time.in-h 288If Exist time.in.h update time.in.h time.in-h
287If Exist unistd.in.h update unistd.in.h unistd.in-h 289If Exist unistd.in.h update unistd.in.h unistd.in-h
288sed -f ../msdos/sedlibcf.inp < Makefile.in > makefile.tmp 290sed -f ../msdos/sedlibcf.inp < Makefile.in > makefile.tmp
289sed -f ../msdos/sedlibmk.inp < makefile.tmp > Makefile 291sed -f ../msdos/sedlibmk.inp < makefile.tmp > Makefile
290rm -f makefile.tmp 292rm -f makefile.tmp
293Rem Create .Po files for new files in lib/
291If Not Exist deps\stamp mkdir deps 294If Not Exist deps\stamp mkdir deps
292If Not Exist deps\stamp for %%f in (*.c) do @call ..\msdos\depfiles.bat %%f 295for %%f in (*.c) do @call ..\msdos\depfiles.bat %%f
293If Not Exist deps\stamp echo deps-stamp > deps\stamp 296echo deps-stamp > deps\stamp
294cd .. 297cd ..
295rem ---------------------------------------------------------------------- 298rem ----------------------------------------------------------------------
296Echo Configuring the lisp directory... 299Echo Configuring the lisp directory...