btrfs-progs: build: use MAKEOPTS where missing

$(MAKE) should also use MAKEOPTS.

Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
David Sterba 2017-02-01 13:23:04 +01:00
parent 0c94504d06
commit 5eff096b78
1 changed files with 7 additions and 7 deletions

View File

@ -299,7 +299,7 @@ test-clean:
test-inst: all test-inst: all
@tmpdest=`mktemp --tmpdir -d btrfs-inst.XXXXXX` && \ @tmpdest=`mktemp --tmpdir -d btrfs-inst.XXXXXX` && \
echo "Test installation to $$tmpdest" && \ echo "Test installation to $$tmpdest" && \
$(MAKE) DESTDIR=$$tmpdest install && \ $(MAKE) $(MAKEOPTS) DESTDIR=$$tmpdest install && \
$(RM) -rf -- $$tmpdest $(RM) -rf -- $$tmpdest
test: test-fsck test-mkfs test-convert test-misc test-fuzz test-cli test: test-fsck test-mkfs test-convert test-misc test-fuzz test-cli
@ -461,16 +461,16 @@ library-test.static: library-test.static.o $(libs_static)
test-build: test-build-pre test-build-real test-build: test-build-pre test-build-real
test-build-pre: test-build-pre:
$(MAKE) clean-all $(MAKE) $(MAKEOPTS) clean-all
./autogen.sh ./autogen.sh
./configure ./configure
test-build-real: test-build-real:
$(MAKE) library-test $(MAKE) $(MAKEOPTS) library-test
-$(MAKE) library-test.static -$(MAKE) $(MAKEOPTS) library-test.static
$(MAKE) -j 8 all $(MAKE) $(MAKEOPTS) -j 8 all
-$(MAKE) -j 8 static -$(MAKE) $(MAKEOPTS) -j 8 static
$(MAKE) -j 8 $(progs_extra) $(MAKE) $(MAKEOPTS) -j 8 $(progs_extra)
manpages: manpages:
$(Q)$(MAKE) $(MAKEOPTS) -C Documentation $(Q)$(MAKE) $(MAKEOPTS) -C Documentation