From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2153) id CA31C38303E3; Thu, 9 Jun 2022 17:46:53 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org CA31C38303E3 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Jakub Jelinek To: gcc-cvs@gcc.gnu.org Subject: [gcc r13-1028] openmp: Fix up include of the generic allocator.c X-Act-Checkin: gcc X-Git-Author: Jakub Jelinek X-Git-Refname: refs/heads/master X-Git-Oldrev: 4c334e0e4ff05d3a7ca9ebb832428c446cd0ae8d X-Git-Newrev: 699e9a0f671875c60c992d4442cba12aea0c25e9 Message-Id: <20220609174653.CA31C38303E3@sourceware.org> Date: Thu, 9 Jun 2022 17:46:53 +0000 (GMT) X-BeenThere: gcc-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Jun 2022 17:46:53 -0000 https://gcc.gnu.org/g:699e9a0f671875c60c992d4442cba12aea0c25e9 commit r13-1028-g699e9a0f671875c60c992d4442cba12aea0c25e9 Author: Jakub Jelinek Date: Thu Jun 9 19:44:50 2022 +0200 openmp: Fix up include of the generic allocator.c As reported by Richard Sandiford, #include "../../../allocator.c" has one too many ../s, dunno why it worked for me when using ../configure (VPATH = ../../../libgomp) 2022-06-09 Jakub Jelinek * config/linux/allocator.c: Fix up #include directive. Diff: --- libgomp/config/linux/allocator.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libgomp/config/linux/allocator.c b/libgomp/config/linux/allocator.c index bef4e48e749..b73acce9121 100644 --- a/libgomp/config/linux/allocator.c +++ b/libgomp/config/linux/allocator.c @@ -33,4 +33,4 @@ #define LIBGOMP_USE_MEMKIND #endif -#include "../../../allocator.c" +#include "../../allocator.c"