From d2faba389a6be8c084bbc2f2eafcbd995f298c83 Mon Sep 17 00:00:00 2001 From: Stephane Bortzmeyer Date: Mon, 9 Apr 2007 19:28:44 +0000 Subject: [PATCH] First version --- SRC/DEVELOPERS | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 SRC/DEVELOPERS diff --git a/SRC/DEVELOPERS b/SRC/DEVELOPERS new file mode 100644 index 0000000..4c38c9d --- /dev/null +++ b/SRC/DEVELOPERS @@ -0,0 +1,20 @@ +This file stores a few small tips for developers. + +=== Starting from a fresh copy === + +When you have just retrieved echoping via Subversion (this does not +apply to regular tarballs), you must first create all the files +required by the autotools. You need these autotools (autoconf, +automake and libtool) and then: + +./recreate-autofiles + +=== Merging from a maintenance branch back into the trunk === + +If you have fixed bugs in a branch and want to merge them into the +trunk as well: + +cd /where/is/the/trunk +svn merge -r N:M ../branches/MAINT_X_Y + +$Id$