libyang: add new include dir (#9012)

This commit is contained in:
Michal Vasko 2022-11-18 11:22:28 +01:00 committed by GitHub
parent eb33c75ad7
commit cc256923e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -27,5 +27,5 @@ static_pcre=($(find /src/pcre2 -name "libpcre2-8.a"))
for fuzzer in lyd_parse_mem_json lyd_parse_mem_xml lys_parse_mem; do
$CC $CFLAGS $LIB_FUZZING_ENGINE ../tests/fuzz/${fuzzer}.c -o $OUT/${fuzzer} \
./libyang.a -I../src -I./src -I./compat ${static_pcre}
./libyang.a -I../src -I../src/plugins_exts -I./src -I./compat ${static_pcre}
done