Update from libobjects terminology to gstep-base.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1823 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Andrew McCallum 1996-09-24 16:06:49 +00:00
parent d75d1180f7
commit 7d290b3475

View file

@ -1,18 +1,20 @@
Directions for creating a libobjects patch Directions for creating a GNUstep Base Library patch
--------------------------------------------------------------- ---------------------------------------------------------------
0. Have somewhere an old, pristine version of the libobjects 0. Have somewhere an old, pristine version of the gstep-base
directory. We'll assume this directory is called "libobjects-old". directory. We'll assume this directory is called "gstep-base-old".
1. Have somewhere a new, changed version of the libobjects directory. 1. Have somewhere a new, changed version of the gnustep-base directory.
We'll assume this directory is called "libobjects", and that it has We'll assume this directory is called "gstep-base", and that it has
the same parent directory as "libobjects-old" the same parent directory as "gstep-base-old"
2. cd to the common parent directory of your two libobjects directories. 2. cd to the common parent directory of your two gstep-base directories.
3. Create the patch with 3. Create the patch with
diff -r -c2 libobjects-old libobjects >my.patch" diff -r -N -u gstep-base-old gstep-base >my.patch"
The `-u' requests a `unified-diff' style patch. If your version of
diff doesn't support this, pass `-c2' instead of `-u'.
4. Add a GNU-style ChangeLog entry to the top of the patch. You can 4. Add a GNU-style ChangeLog entry to the top of the patch. You can
do this from within emacs using M-x add-change-log-entry. do this from within emacs using M-x add-change-log-entry.
@ -27,7 +29,7 @@ personally, put it at the top, above the ChangeLog entry.
For a beautiful example from Adam Fedor, see the file example.patch. For a beautiful example from Adam Fedor, see the file example.patch.
If you send me multiple patches to the same file between releases of If you send me multiple patches to the same file between releases of
libobjects, please diff against a version that has your previous patches. gstep-base, please diff against a version that has your previous patches.
[I just threw these directions together. If you have constructive [I just threw these directions together. If you have constructive
suggestions for improving these directions, please send them to me. suggestions for improving these directions, please send them to me.