From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on gnuweeb.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=5.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,NO_DNS_FOR_FROM autolearn=no autolearn_force=no version=3.4.6 Received: from localhost.localdomain (unknown [182.253.183.89]) by gnuweeb.org (Postfix) with ESMTPSA id B799D81917; Mon, 19 Dec 2022 15:50:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1671465033; bh=wDhwh6SEWRdoxqFmz3sjSJiYXWiBiIzzspUZzIfk2m8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=JxYDMf+5Ukbm1YFub2R2W3QPxRbSRJroyVmUV8vJMgITFKYcXwuXrh2juFyjDAw0d HySBipw/QOFwtLOz9t91rcwVuWUyD0ewGKyJnTqNOXsppHqf21RrI2tANt0n5yTktU CrtW8T7Xg92xZFOknI1jn9b+kWti+Oav+IuIimR2aWwyl3MxsohqfHsSV3lozrhgJY mw6/czzvmlCm2f6XYacC3bM/T9h5+7PRrv/9N83gCYJqSPppWW3ey7NRGAjdvigS7I XpGIYVzdLX8BRPIrUkbSnZeGeizcg+wGAjCXmTESrX2N4wxxCLjLbgCw3N7uvw0l7t EPA2XZdu2grUQ== From: Ammar Faizi To: Jens Axboe Cc: Ammar Faizi , Pavel Begunkov , Gilang Fachrezy , Muhammad Rizki , VNLX Kernel Department , GNU/Weeb Mailing List , io-uring Mailing List , Christian Hergert Subject: [PATCH liburing v1 2/8] Makefile: Add a '+' char to silence a Makefile warning Date: Mon, 19 Dec 2022 22:49:54 +0700 Message-Id: <20221219155000.2412524-3-ammar.faizi@intel.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20221219155000.2412524-1-ammar.faizi@intel.com> References: <20221219155000.2412524-1-ammar.faizi@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: When building with `make -jN` where `N` is greater than 1, it shows: make[1]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. make[1]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. This happens because since commit 0d55ea19ccf2 ("version: generate io_uring_version.h from Makefile.common"), the configure file executes make command. Add a '+' char in front of the configure command to silence this warning. Cc: Christian Hergert Fixes: 0d55ea19ccf2f34c5dd74f80846f9e5f133746ff ("version: generate io_uring_version.h from Makefile.common") Signed-off-by: Ammar Faizi --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 686be4f..4bd7e24 100644 --- a/Makefile +++ b/Makefile @@ -18,21 +18,21 @@ partcheck: all @echo "make partcheck => TODO add tests with out kernel support" runtests: all @$(MAKE) -C test runtests runtests-loop: all @$(MAKE) -C test runtests-loop runtests-parallel: all @$(MAKE) -C test runtests-parallel config-host.mak: configure - @if [ ! -e "$@" ]; then \ + +@if [ ! -e "$@" ]; then \ echo "Running configure ..."; \ ./configure; \ else \ echo "$@ is out-of-date, running configure"; \ sed -n "/.*Configured with/s/[^:]*: //p" "$@" | sh; \ fi ifneq ($(MAKECMDGOALS),clean) include config-host.mak endif -- Ammar Faizi