diff options
author | thegeorg <thegeorg@yandex-team.com> | 2023-06-28 16:09:52 +0300 |
---|---|---|
committer | thegeorg <thegeorg@yandex-team.com> | 2023-06-28 16:09:52 +0300 |
commit | e3141b4657c83fa042ee7bf85c5535b2bb250f6d (patch) | |
tree | fb66bbf70d37955c3f1d47905089d464ba6ca3ec /build/ymake.core.conf | |
parent | d1068b1b55aab21b6fa4bb041e3c413e455ac7c3 (diff) | |
download | ydb-e3141b4657c83fa042ee7bf85c5535b2bb250f6d.tar.gz |
Make f2c generated outputs depend on f2c.h
```
contrib/python/scipy/py3/_/scipy/fftpack/src/dfftpack/dsinti.f.c:22:10: fatal error: 'f2c.h' file not found
#include "f2c.h"
^~~~~~~
1 error generated.
```
Diffstat (limited to 'build/ymake.core.conf')
-rw-r--r-- | build/ymake.core.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/ymake.core.conf b/build/ymake.core.conf index c032128dc8..633c421954 100644 --- a/build/ymake.core.conf +++ b/build/ymake.core.conf @@ -6307,7 +6307,7 @@ macro _SRC("ssqls", SRC, SRCFLAGS...) { # tag:src-processing macro _SRC("f", SRC, SRCFLAGS...) { - .CMD=$YMAKE_PYTHON ${input:"build/scripts/f2c.py"} -t ${tool:"contrib/tools/f2c"} -c ${input:SRC} -o ${output:SRC.c} ${kv;hide:"p FT"} ${kv;hide:"pc light-green"} + .CMD=$YMAKE_PYTHON ${input:"build/scripts/f2c.py"} -t ${tool:"contrib/tools/f2c"} -c ${input:SRC} -o ${output:SRC.c} ${output_include;hide:"f2c.h"} ${kv;hide:"p FT"} ${kv;hide:"pc light-green"} .PEERDIR=contrib/libs/libf2c .ADDINCL=contrib/libs/libf2c } |