]> git.proxmox.com Git - mirror_spl-debian.git/commit
Support custom build directories
authorBrian Behlendorf <behlendorf1@llnl.gov>
Thu, 2 Sep 2010 19:12:39 +0000 (12:12 -0700)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Mon, 6 Sep 2010 04:49:05 +0000 (21:49 -0700)
commita7958f7eef5ba55987810336d887437767941d26
tree58f613c18dcd1b6e71991c2dd5d3ab47e8380c92
parentd8a1b739359b04f016e2b81844a29c4d0de60bd8
Support custom build directories

One of the neat tricks an autoconf style project is capable of
is allow configurion/building in a directory other than the
source directory.  The major advantage to this is that you can
build the project various different ways while making changes
in a single source tree.

For example, this project is designed to work on various different
Linux distributions each of which work slightly differently.  This
means that changes need to verified on each of those supported
distributions perferably before the change is committed to the
public git repo.

Using nfs and custom build directories makes this much easier.
I now have a single source tree in nfs mounted on several different
systems each running a supported distribution.  When I make a
change to the source base I suspect may break things I can
concurrently build from the same source on all the systems each
in their own subdirectory.

wget -c http://github.com/downloads/behlendorf/spl/spl-x.y.z.tar.gz
tar -xzf spl-x.y.z.tar.gz
cd spl-x-y-z

------------------------- run concurrently ----------------------
<ubuntu system>  <fedora system>  <debian system>  <rhel6 system>
mkdir ubuntu     mkdir fedora     mkdir debian     mkdir rhel6
cd ubuntu        cd fedora        cd debian        cd rhel6
../configure     ../configure     ../configure     ../configure
make             make             make             make
make check       make check       make check       make check

This is something the project has almost supported for a long time
but finishing this support should save me lots of time.
16 files changed:
Makefile.am
Makefile.in
cmd/Makefile.am
cmd/Makefile.in
config/Rules.am
config/spl-build.m4
configure
configure.ac
include/Makefile.am
include/Makefile.in
lib/Makefile.in
module/Makefile.in
module/spl/Makefile.in
module/splat/Makefile.in
scripts/Makefile.am
scripts/Makefile.in