]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
* djunpack.bat: New file.
authorEli Zaretskii <eliz@gnu.org>
Sun, 23 Apr 2000 07:47:02 +0000 (07:47 +0000)
committerEli Zaretskii <eliz@gnu.org>
Sun, 23 Apr 2000 07:47:02 +0000 (07:47 +0000)
* config/djgpp/README: Explain how to unpack using djunpack.bat.

ChangeLog
gdb/ChangeLog
gdb/config/djgpp/README

index e85d24dbc77477254cf9fb32c396fd0cc8b91b25..3e0a546e7aabe0c656d2f24b3ea97903bcad955e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2000-04-23  Eli Zaretskii  <eliz@is.elta.co.il>
+
+       * djunpack.bat: New file.
+
 Wed Apr 19 12:46:26 2000  Andrew Cagney  <cagney@b1.cygnus.com>
 
        * Makefile.in (taz, gdb-taz, gas.tar.bz2, binutils.tar.bz2,
index 474144106b46bc7412849fd862f27bedc5d223cc..d183e8486451c9419b9718223d21538c3adf0f6b 100644 (file)
@@ -1,3 +1,7 @@
+2000-04-23  Eli Zaretskii  <eliz@is.elta.co.il>
+
+       * config/djgpp/README: Explain how to unpack using djunpack.bat.
+
 2000-04-21  Elena Zannoni  <ezannoni@kwikemart.cygnus.com>
 
        * gdb-stabs.h (SECT_OFF_MAX): Increase to 40.
index cced23473df3644afaece86ddf540a3bb93390d6..b45c00334afad07c8af893b7c18c8fc7fff68616 100644 (file)
@@ -65,21 +65,33 @@ use unzip32.exe available with the rest of DJGPP), and proceed to the
 section "How to build" below.
 
 Source distributions downloaded from one of the GNU FTP sites need
-some more work to unpack.  First, you MUST use the `djtar' program to
-unzip the package.  That's because some file names in the official
-distributions need to be changed to avoid problems on the various
-platforms supported by DJGPP.  `djtar' can rename files on the fly
-given a file with name mappings; the distribution includes a file
-`gdb/config/djgpp/fnchange.lst' with the necessary mappings.  So you
-need first to retrieve that file, and then invoke `djtar' to unpack
-the distribution.  Here's how:
-
-
- djtar -x -p -o gdb-5.0/gdb/config/djgpp/fnchange.lst gdb-5.0.tar.gz > lst
- djtar -x -n lst gdb-5.0.tar.gz
-
-(The name of the distribution archive and the top-level directory will
-be different for versions other than 5.0.)
+some more work to unpack.  First, you MUST use the `djunpack' batch
+file to unzip the package.  That's because some file names in the
+official distributions need to be changed to avoid problems on the
+various platforms supported by DJGPP.  `djunpack' invokes the `djtar'
+program (that is part of the basic DJGPP development kit) to rename
+these files on the fly given a file with name mappings; the
+distribution includes a file `gdb/config/djgpp/fnchange.lst' with the
+necessary mappings.  So you need first to retrieve that batch file,
+and then invoke it to unpack the distribution.  Here's how:
+
+ djtar -x -p -o gdb-5.0/djunpack.bat gdb-5.0.tar.gz > djunpack.bat
+ djunpack gdb-5.0.tar.gz
+
+(The name of the distribution archive and the leading directory of the
+path to `djunpack.bat' in the distribution will be different for
+versions of GDB other than 5.0.)
+
+If the argument to `djunpack.bat' include leading directories, it MUST
+be given with the DOS-style backslashes; Unix-style forward slashes
+will NOT work.
+
+If the distribution comes as a .tar.bz2 archive, you need to unpack it
+as follows:
+
+ bnzip2 gdb-5.0.tar.bz2
+ djtar -x -p -o gdb-5.0/djunpack.bat gdb-5.0.tar > djunpack.bat
+ djunpack gdb-5.0.tar
 
 
 3. How to build