Skip to content

Commit

Permalink
Makefile.am: fixup ossfuzz LDADD
Browse files Browse the repository at this point in the history
Automake cannot properly associate the libstandaloneengine.la target as
a dependency of the other ossfuzz targets, because it is specified with
the wrong path - leading to a make error when trying to build with
`--enable-ossfuzzers`.

Specify the correct path.

Signed-off-by: Alex Stewart <alex.stewart@ni.com>
  • Loading branch information
amstewart committed Oct 18, 2023
1 parent 98fc031 commit 5846984
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile.am
Expand Up @@ -456,7 +456,7 @@ if USE_OSSFUZZ_STATIC
FUZZ_LDADD = $(LIB_FUZZING_ENGINE)
FUZZ_FLAG =
else
FUZZ_LDADD = libstandaloneengine.la
FUZZ_LDADD = ossfuzz/libstandaloneengine.la
FUZZ_FLAG =
endif
endif
Expand Down

0 comments on commit 5846984

Please sign in to comment.