cert-related "make check" failures
Jim Meyering
jim at meyering.net
Mon Nov 28 15:24:53 CET 2011
Werner Koch wrote:
> On Mon, 28 Nov 2011 13:43, jim at meyering.net said:
>
>> Ok. Sending separately.
>
> Applied.
Thanks. With that, I can chain build your five packages like this:
(modulo gnupg's three make check failures)
p=/tmp/gpg-tmp
mkdir $p || exit 1
export PATH=$p/bin:$PATH
export LD_LIBRARY_PATH=$p/lib
# Run this in another window.
#tail -n0 -F {libgpg-error,libksba,libassuan,libgcrypt,gnupg}/log &
prev=
cfg="./configure --enable-maintainer-mode --prefix=$p"
for i in libgpg-error libassuan libksba libgcrypt gnupg; do
echo $i...
test -n "$prev" && cfg="$cfg --with-$prev-prefix=$p"
(cd $i && eval $cfg && make && make check && make install) > $i/log 2>&1 \
|| { echo FAIL; break; }
prev=$i
done
More information about the Gnupg-devel
mailing list