]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - djunpack.bat
[PATCH] fix windmc typedef bug
[thirdparty/binutils-gdb.git] / djunpack.bat
CommitLineData
6cafa39f
EZ
1@echo off\r
2Rem\r
3Rem WARNING WARNING WARNING: This file needs to have DOS CRLF end-of-line\r
4Rem format, or else stock DOS/Windows shells will refuse to run it.\r
5Rem\r
6Rem This batch file unpacks the GDB distribution while simultaneously\r
7Rem renaming some of the files whose names are invalid on DOS or conflict\r
8Rem with other file names after truncation to DOS 8+3 namespace.\r
9Rem\r
10Rem Invoke like this:\r
11Rem\r
12Rem djunpack gdb-XYZ.tar\r
13Rem\r
14Rem where XYZ is the version number. If the argument includes leading\r
15Rem directories, it MUST use backslashes, not forward slashes.\r
16Rem\r
17Rem The following 2 lines need to be changed with each new GDB release, to\r
18Rem be identical to the name of the top-level directory where the GDB\r
19Rem distribution unpacks itself.\r
20set GDBVER=gdb-5.0\r
21if "%GDBVER%"=="gdb-5.0" GoTo EnvOk\r
22Rem If their environment space is too small, re-exec with a larger one\r
23command.com /e:4096 /c %0 %1\r
24GoTo End\r
25:EnvOk\r
26if not exist %1 GoTo NoArchive\r
27djtar -x -p -o %GDBVER%/gdb/config/djgpp/fnchange.lst %1 > fnchange.tmp\r
28Rem The following uses a feature of COPY whereby it does not copy\r
29Rem empty files. We need that because the previous line will create\r
30Rem an empty fnchange.tmp even if the command failed for some reason.\r
31copy fnchange.tmp junk.tmp > nul\r
32if not exist junk.tmp GoTo NoDjTar\r
33del junk.tmp\r
47afba5f 34sed -e "s,@V@,%GDBVER%,g" < fnchange.tmp > fnchange.lst\r
6cafa39f
EZ
35Rem See the comment above about the reason for using COPY.\r
36copy fnchange.lst junk.tmp > nul\r
37if not exist junk.tmp GoTo NoSed\r
38del junk.tmp\r
39djtar -x -n fnchange.lst %1\r
40GoTo End\r
41:NoSed\r
42echo FAIL: Sed is not available.\r
43GoTo End\r
44:NoDjTar\r
45echo FAIL: DJTAR is not available or no fnchange.lst file in %1.\r
46GoTo End\r
47:NoArchive\r
48echo FAIL: the file %1 does not seem to exist.\r
49echo Remember that %1 cannot use forward slashes, only backslashes.\r
50GoTo End\r
51:End\r
52set GDBVER=\r