X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=docs%2FREADME.developers;h=522244a1fc5ef45d4714834ad0d921182821b8dc;hb=fc80e34e8e9e3c726073d321e2075ead77baba08;hp=9314563cfb943ee193cc1204883e484cf94d46c2;hpb=e0233d70fb7bfac996b3514ae60d7eedef0e6ad3;p=mmh diff --git a/docs/README.developers b/docs/README.developers index 9314563..522244a 100644 --- a/docs/README.developers +++ b/docs/README.developers @@ -41,12 +41,24 @@ end-users who don't have any interest in changing the configure-related files and don't have autoconf installed. They'll be unable to make without playing around with `touch'. -The correct order to commit the configure-related files is: - -% cvs commit acconfig.h aclocal.m4 config.h.in configure.in configure stamp-h.in - -If you haven't changed all of those files, just commit the rest in the -stated order (e.g. cvs commit acconfig.h config.h.in stamp-h.in). +The correct procedure to commit the configure-related files is: + + % cvs commit acconfig.h aclocal.m4 configure.in + % autoconf && autoheader # or simply "make" + % cvs commit config.h.in configure + % make stamp-h.in # or simply "make" + % cvs commit stamp-h.in + +The reason that the commits need to be split up is that the timestamps on the +files change when the commits are done and the RCS Ids change. If one committed +all the files in one fell swoop (in the above relative order), timestamps would +cause unnecessary autoconf regeneration on 'make's after the commit, which would +waste your time and would cause your local stamp-h.in to be out-of-sync with the +one checked into CVS (not the end of the world, but...). + +If you haven't changed all the files noted above, just commit the ones you have, +in the stated order (for instance, configure.in, then configure, then +stamp-h.in). -------------------