openmp: Fix up include of the generic allocator.c
authorJakub Jelinek <jakub@redhat.com>
Thu, 9 Jun 2022 17:44:50 +0000 (19:44 +0200)
committerJakub Jelinek <jakub@redhat.com>
Thu, 9 Jun 2022 17:44:50 +0000 (19:44 +0200)
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  <jakub@redhat.com>

* config/linux/allocator.c: Fix up #include directive.

libgomp/config/linux/allocator.c

index bef4e48..b73acce 100644 (file)
@@ -33,4 +33,4 @@
 #define LIBGOMP_USE_MEMKIND
 #endif
 
-#include "../../../allocator.c"
+#include "../../allocator.c"