Files
termux-packages/packages/gap/compiled.h-path.patch
termux-pacman-bot dfb5eb1dda fix(main/gap): do not symlink include/gap/src to itself
Detected in termux_step_massage:

find: File system loop detected; ‘./include/gap/src’ is part of the same file system loop as ‘./include/gap’.
2022-10-28 08:10:22 +00:00

100 lines
3.1 KiB
Diff

diff --git ./pkg/caratinterface/src/setcaratdir.c b/pkg/caratinterface/src/setcaratdir.c
index b4010465..5e2a0eea 100644
--- ./pkg/caratinterface/src/setcaratdir.c
+++ ./pkg/caratinterface/src/setcaratdir.c
@@ -1,6 +1,6 @@
#include <stdio.h>
#include <stdlib.h>
-#include "src/compiled.h"
+#include "compiled.h"
Obj FuncSET_CARAT_DIR( Obj self, Obj str ) {
setenv("CARAT_DIR", CSTR_STRING(str), 1);
diff --git ./pkg/cddinterface/src/CddInterface.c b/pkg/cddinterface/src/CddInterface.c
index 9c931ba0..19e7eb75 100644
--- ./pkg/cddinterface/src/CddInterface.c
+++ ./pkg/cddinterface/src/CddInterface.c
@@ -2,7 +2,7 @@
* CddInterface: Gap interface to Cdd package
*/
-#include "src/compiled.h" /* GAP headers */
+#include "compiled.h" /* GAP headers */
#include "setoper.h"
#include "cdd.h"
diff --git ./pkg/digraphs/src/cliques.c b/pkg/digraphs/src/cliques.c
index 4bcf8219..f7f34728 100644
--- ./pkg/digraphs/src/cliques.c
+++ ./pkg/digraphs/src/cliques.c
@@ -15,7 +15,7 @@
#include <stdlib.h> // for malloc, NULL
// GAP headers
-#include "src/compiled.h"
+#include "compiled.h"
// Digraphs package headers
#include "bitarray.h" // for BitArray
diff --git ./pkg/digraphs/src/cliques.h b/pkg/digraphs/src/cliques.h
index d953121b..909c7919 100644
--- ./pkg/digraphs/src/cliques.h
+++ ./pkg/digraphs/src/cliques.h
@@ -12,7 +12,7 @@
#define DIGRAPHS_SRC_CLIQUES_H_
// GAP headers
-#include "src/compiled.h"
+#include "compiled.h"
Obj FuncDigraphsCliquesFinder(Obj self, Obj args);
diff --git ./pkg/edim/src/compstat_with_ediv.c b/pkg/edim/src/compstat_with_ediv.c
index 0b335b25..010122d1 100644
--- ./pkg/edim/src/compstat_with_ediv.c
+++ ./pkg/edim/src/compstat_with_ediv.c
@@ -1,5 +1,5 @@
/* made by 'gac', can be thrown away */
-#include "src/compiled.h"
+#include "compiled.h"
#ifndef AVOID_PRECOMPILED
extern StructInitInfo * Init__methsel1 ( void );
extern StructInitInfo * Init__type1 ( void );
diff --git ./pkg/edim/src/ediv.c b/pkg/edim/src/ediv.c
index 23203d6b..d50a1fc7 100644
--- ./pkg/edim/src/ediv.c
+++ ./pkg/edim/src/ediv.c
@@ -12,7 +12,7 @@
/* read GAP source header files with a combined header file */
-#include "src/compiled.h" /* GAP headers */
+#include "compiled.h" /* GAP headers */
#include <stdio.h>
diff --git ./pkg/hap/lib/CompiledGAP/absint.c b/pkg/hap/lib/CompiledGAP/absint.c
index 362dc0c2..e88fc4fd 100644
--- ./pkg/hap/lib/CompiledGAP/absint.c
+++ ./pkg/hap/lib/CompiledGAP/absint.c
@@ -1,6 +1,6 @@
/*Written by Paul Smith*/
-#include "src/compiled.h" /* the GAP headers */
+#include "compiled.h" /* the GAP headers */
#include <stdlib.h> /* for abs */
diff --git ./pkg/hap/lib/CompiledGAP/signint.c b/pkg/hap/lib/CompiledGAP/signint.c
index 68310f4c..e8508863 100644
--- ./pkg/hap/lib/CompiledGAP/signint.c
+++ ./pkg/hap/lib/CompiledGAP/signint.c
@@ -1,6 +1,6 @@
/*Based on a template by Paul Smith*/
-#include "src/compiled.h" /* the GAP headers */
+#include "compiled.h" /* the GAP headers */
#include <stdlib.h> /* for SignInt */