To: sm-commit AT lists.ibiblio.org, "Ismael E. Luceno" <=@fawkes.sourcemage.org>
Subject: Re: [SM-Commit] GIT changes to master grimoire by Ismael E. Luceno (a11b2efc7fe3a96760841b2f389a551a45766b74)
Date: Sun, 2 Dec 2007 19:14:38 +0100
> --- /dev/null
> +++ b/devel/codeblocks/BUILD
> @@ -0,0 +1,3 @@
> +./bootstrap &&
> +./configure --prefix=/usr --enable-contrib $OPTS &&
> +make
--prefix=/usr should be --prefix="$INSTALL_ROOT/usr" so users can install
this
someplace other than / too.
But, is their configure special, does it break if one passes them all the
other options we usually do (bindir mandir infodir ...)? If not, I suggest
you use the following instead:
./bootstrap &&
OPTS="--enable-contrib $OPTS" &&
default_build #runs configure with all the flags we want + OPTS; then make