[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [XEN PATCH v3 2/2] Config.mk: evaluate XEN_COMPILE_ARCH and XEN_OS immediately
- To: Anthony PERARD <anthony.perard@xxxxxxxxxx>
- From: Jan Beulich <jbeulich@xxxxxxxx>
- Date: Mon, 31 Jul 2023 12:50:38 +0200
- Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=suse.com; dmarc=pass action=none header.from=suse.com; dkim=pass header.d=suse.com; arc=none
- Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-AntiSpam-MessageData-ChunkCount:X-MS-Exchange-AntiSpam-MessageData-0:X-MS-Exchange-AntiSpam-MessageData-1; bh=2m0vc8Do0ZZBQ+Lw+lGAAEdyMmUOKX1UmXo6O310PfM=; b=oBPZseVPNPeo+2OPcrvBQqA7uUIe+v5k/F1jWg5X9pbjPbcDxiVyCP81gGIUizGP+CD1ZxyzUp7NGY1s/OP7i+rSSrEg6vRM6vgpzZtHOo5ybCLSCK0d6/pTtyvMlCE9XZpwMuI/5+EkOnij1MVPjFOXm51Z58PcUsCxGpaYnVvWTCh2U/XuJwoMZX6S8Et1qGUiQRq/eWHMz9Q9enIXGb/fzTrLOMoPwhIbvz3V3h+Zo/vBQtY00XkSWgf/o6MQ8Kwl648V0jy2VPaZyfLb9+mkPT0m/qY2Be8SOKcEWtCfobr1gCvNZYjvwa2nShHjSomulIR0eUgls3eCKEZ3Wg==
- Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=FYOpml+k5iwTh8gAvJsBsODirSS3Fziz2CSusGhRqp8FJvkZM89mHl68PoDjvMWwHV5mLVipt3mgz9JgtNDc6TDNqqZiaDOBVyOaoODtz4/d0FfhIja66dhhl6/vTGoVcJ8TMF1Lxj5lpw6vSx7xpI0NAb08iwb0YqRIzNX9DCi9IMBxOXZN4e0BK3JL3b/y2AJQLeX9eC3a8FB6OWZEf3RaG9D32yDJix7Om7CcWg+BKrpcvYVH/vmWPfa3GB/9p8ripc88fR4ZStVHE6p+CeHBX+7O3d5Iv93Ml+Mc+WOXqNGsVo7aXu0vWT920bo90rPTuWaz06g2J/dREti+sA==
- Authentication-results: dkim=none (message not signed) header.d=none;dmarc=none action=none header.from=suse.com;
- Cc: Jason Andryuk <jandryuk@xxxxxxxxx>, Andrew Cooper <andrew.cooper3@xxxxxxxxxx>, George Dunlap <george.dunlap@xxxxxxxxxx>, Julien Grall <julien@xxxxxxx>, Stefano Stabellini <sstabellini@xxxxxxxxxx>, Wei Liu <wl@xxxxxxx>, xen-devel@xxxxxxxxxxxxxxxxxxxx
- Delivery-date: Mon, 31 Jul 2023 10:50:42 +0000
- List-id: Xen developer discussion <xen-devel.lists.xenproject.org>
On 27.07.2023 16:54, Anthony PERARD wrote:
> With GNU make 4.4, the number of execution of the command present in
> these $(shell ) increased greatly. This is probably because as of make
> 4.4, exported variable are also added to the environment of $(shell )
> construct.
>
> So to avoid having these command been run more than necessary, we
> will replace ?= by an equivalent but with immediate expansion.
>
> Reported-by: Jason Andryuk <jandryuk@xxxxxxxxx>
> Signed-off-by: Anthony PERARD <anthony.perard@xxxxxxxxxx>
Reviewed-by: Jan Beulich <jbeulich@xxxxxxxx>
|