Message ID | 20200527211642.122200-1-ebiggers@kernel.org (mailing list archive) |
---|---|
State | Accepted |
Headers | show |
Series | [xfstests-bld] build-all: update rule to build fsverity-utils | expand |
On Wed, May 27, 2020 at 02:16:42PM -0700, Eric Biggers wrote: > From: Eric Biggers <ebiggers@google.com> > > To match the usual convention, the fsverity-utils Makefile now takes a > PREFIX variable which defaults to /usr/local. > > But xfstests-bld wants PREFIX=/usr, so set that. > > Also don't explicitly build the 'all' target, since 'install' depends on > it already. > > Signed-off-by: Eric Biggers <ebiggers@google.com> Thanks, applied. - Ted
diff --git a/build-all b/build-all index 0122628..572edfa 100755 --- a/build-all +++ b/build-all @@ -290,7 +290,7 @@ if test -z "$SKIP_FSVERITY"; then build_start "fsverity" (cd fsverity; \ ver=$(git describe --always --dirty); echo "fsverity $ver ($(git log -1 --pretty=%cD))" > ../fsverity.ver ; \ - $MAKE_CLEAN ; make $J all ; make install DESTDIR=$DESTDIR) + $MAKE_CLEAN ; make $J install DESTDIR=$DESTDIR PREFIX=/usr) fi if test -z "$SKIP_IMA_EVM_UTILS" ; then