* djunpack.bat: removed.
authorLaurynas Biveinis <lauras@softhome.net>
Sat, 9 Dec 2000 16:07:41 +0000 (16:07 +0000)
committerDJ Delorie <dj@gcc.gnu.org>
Sat, 9 Dec 2000 16:07:41 +0000 (11:07 -0500)
From-SVN: r38155

ChangeLog
djunpack.bat [deleted file]

index c0b0555b77d30d5606d7569d8054667b7dfbf122..08a39fb5abf70c09ba4d033b0b5e52a999681e08 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2000-12-09  Laurynas Biveinis  <lauras@softhome.net>
+
+       * djunpack.bat: removed.
+
 2000-12-09  Laurynas Biveinis  <lauras@softhome.net>
 
        * Makefile.in: handle DOS-style absolute paths.
diff --git a/djunpack.bat b/djunpack.bat
deleted file mode 100755 (executable)
index f09f5ed..0000000
+++ /dev/null
@@ -1,52 +0,0 @@
-@echo off\r
-Rem\r
-Rem WARNING WARNING WARNING: This file needs to have DOS CRLF end-of-line\r
-Rem format, or else stock DOS/Windows shells will refuse to run it.\r
-Rem\r
-Rem This batch file unpacks the GDB distribution while simultaneously\r
-Rem renaming some of the files whose names are invalid on DOS or conflict\r
-Rem with other file names after truncation to DOS 8+3 namespace.\r
-Rem\r
-Rem Invoke like this:\r
-Rem\r
-Rem     djunpack gdb-XYZ.tar\r
-Rem\r
-Rem where XYZ is the version number.  If the argument includes leading\r
-Rem directories, it MUST use backslashes, not forward slashes.\r
-Rem\r
-Rem The following 2 lines need to be changed with each new GDB release, to\r
-Rem be identical to the name of the top-level directory where the GDB\r
-Rem distribution unpacks itself.\r
-set GDBVER=gdb-5.0\r
-if "%GDBVER%"=="gdb-5.0" GoTo EnvOk\r
-Rem If their environment space is too small, re-exec with a larger one\r
-command.com /e:4096 /c %0 %1\r
-GoTo End\r
-:EnvOk\r
-if not exist %1 GoTo NoArchive\r
-djtar -x -p -o %GDBVER%/gdb/config/djgpp/fnchange.lst %1 > fnchange.tmp\r
-Rem The following uses a feature of COPY whereby it does not copy\r
-Rem empty files.  We need that because the previous line will create\r
-Rem an empty fnchange.tmp even if the command failed for some reason.\r
-copy fnchange.tmp junk.tmp > nul\r
-if not exist junk.tmp GoTo NoDjTar\r
-del junk.tmp\r
-sed -e 's,@V@,%GDBVER%,g' < fnchange.tmp > fnchange.lst\r
-Rem See the comment above about the reason for using COPY.\r
-copy fnchange.lst junk.tmp > nul\r
-if not exist junk.tmp GoTo NoSed\r
-del junk.tmp\r
-djtar -x -n fnchange.lst %1\r
-GoTo End\r
-:NoSed\r
-echo FAIL: Sed is not available.\r
-GoTo End\r
-:NoDjTar\r
-echo FAIL: DJTAR is not available or no fnchange.lst file in %1.\r
-GoTo End\r
-:NoArchive\r
-echo FAIL: the file %1 does not seem to exist.\r
-echo Remember that %1 cannot use forward slashes, only backslashes.\r
-GoTo End\r
-:End\r
-set GDBVER=\r