From: Juan Manuel Guerrero Date: Wed, 7 Mar 2007 06:33:27 +0000 (+0000) Subject: * djgpp/config.bat: Fix that inttypes.h and inttypes_.h map on the same 8.3 alias. X-Git-Tag: v2.3b~144 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/7b30971d7b915f5d9f7bccd24ab5f5b0e18680e1?ds=sidebyside * djgpp/config.bat: Fix that inttypes.h and inttypes_.h map on the same 8.3 alias. --- diff --git a/djgpp/config.bat b/djgpp/config.bat index 4eb44d58..e9382a06 100644 --- a/djgpp/config.bat +++ b/djgpp/config.bat @@ -180,6 +180,10 @@ Rem Make sure they have a config.site file set CONFIG_SITE=%XSRC%/djgpp/config.site if not "%CONFIG_SITE%" == "%XSRC%/djgpp/config.site" goto SmallEnv +Rem inttypes_.h and inttypes.h map to the same 8.3 alias. +test -f %XSRC%/lib/inttypes_.h +if not errorlevel 1 mv -f %XSRC%/lib/inttypes_.h %XSRC%/lib/_inttypes.h + Rem Make sure crucial file names are not munged by unpacking test -f %XSRC%/po/Makefile.in.in if not errorlevel 1 mv -f %XSRC%/po/Makefile.in.in %XSRC%/po/Makefile.in-in