Why you do not want to patch your source code in placeMarch 9, 2012
Perhaps it is not obvious why this is a bad idea, so let me go on at more length than a tweet allows. The problem with patching in place is not so much that patching your
source as part of building it is a bad idea in general (sometimes it's
necessary), it is that patching in place makes it really hard to clean
up after yourself if something goes wrong, especially if the patch is
only partially applied. When you patch in place, ' (That patching in place creates spurious changes in VCS status output is another sign that it is a bad idea. In a DVCS this makes it very easy for people to commit or stash changes that they should not and thus to get their copy of the repo into a completely snarled state.) When you do not patch in place, cleanup is simple and reliable: delete the build directory that holds the patched source. You do not have to worry about partially applied patches or keep careful track of new files; everything just vanishes. Sysadmins never have to 'clean up' by deleting everything and restarting from scratch. And everything stays clean and clear for people working from your version control system (for example, those who are trying out your latest development version). This entry has been brought to you by someone who had to type ' (PS: once is too many times.) Sidebar: why what RPM and Debian's package builder do is okaySuperficially, it looks like RPM (and I believe the Debian package manager) patch the source code of packages that they're building in place in this way, in that (eg) RPM directly applies whatever patches are specified on top of the source tree it extracted from your distribution tarball. The difference in what RPM does is that for RPM, the entire extracted source tree is simply a giant temporary build tree (and all of it will be removed to clean things up). The 'source' for RPM packages is the original distribution tarball and patch files, and these are never touched by the build process. |
These are my WanderingThoughts GettingAround This is part of CSpace, and is written by ChrisSiebenmann. * * * Atom feeds are available; see the bottom of most pages. Categories: links, linux, programming, python, snark, solaris, spam, sysadmin, tech, unix, web |