From: Bernhard M. Wiedemann Date: Mon, 29 Oct 2018 14:11:28 +0000 (+0100) Subject: zstd-pgo: do not make clean and zstd in parallel X-Git-Tag: v1.3.8~59^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a38ad53acef6fad6857d011790fd7f38ce4e8bf6;p=thirdparty%2Fzstd.git zstd-pgo: do not make clean and zstd in parallel otherwise, there might not be a ./zstd to run --- diff --git a/programs/Makefile b/programs/Makefile index d0184c6c7..7b89e9204 100644 --- a/programs/Makefile +++ b/programs/Makefile @@ -203,8 +203,9 @@ zstd-noxz : LZMA_MSG := - xz/lzma support is disabled zstd-noxz : zstd -zstd-pgo : MOREFLAGS = -fprofile-generate -zstd-pgo : clean zstd +zstd-pgo : + $(MAKE) clean + $(MAKE) zstd MOREFLAGS=-fprofile-generate ./zstd -b19i1 $(PROFILE_WITH) ./zstd -b16i1 $(PROFILE_WITH) ./zstd -b9i2 $(PROFILE_WITH)