On systems (such as ALT Linux) where `--as-needed' is passed to ld by default, building tests fail due to CUNIT_INSTALLED test failure to link with libcunit, becasue `-lcunit' is passed before input file (which is `-'). Move `-lcunit' after '-' to link it properly. To reproduce `make CC='gcc -Wl,--as-needed' test`. Error message: Makefile:344: *** CUnit framework not installed, cannot build unit tests. Stop. Signed-off-by: Vitaly Chikunov <vt@xxxxxxxxxxxx> Cc: Dmitry V. Levin <ldv@xxxxxxxxxxxx> --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6b606da..83e5646 100644 --- a/Makefile +++ b/Makefile @@ -242,7 +242,7 @@ ifeq ($(VSOCK_DEFINED), 1) CFLAGS += -DVSOCK endif -CUNIT_INSTALLED := $(shell if (printf "$(pound)include <CUnit/Basic.h>\n void main(){CU_initialize_registry();}" | $(CC) -x c -lcunit - >/dev/null 2>&1) ; then echo 1; else echo 0 ; fi) +CUNIT_INSTALLED := $(shell if (printf "$(pound)include <CUnit/Basic.h>\n void main(){CU_initialize_registry();}" | $(CC) -x c - -lcunit >/dev/null 2>&1) ; then echo 1; else echo 0 ; fi) export CUNIT_INSTALLED export CFLAGS -- 2.11.0