# HG changeset patch # User Mike Becker # Date 1703690290 -3600 # Node ID bbf2f18b381893aae2d7663ba853ddf3987e4693 # Parent 4586a84c0c0baacd3dad1f5d7b24f5e12d880879 fix missing LDFLAGS when linking ucxtest diff -r 4586a84c0c0b -r bbf2f18b3818 tests/Makefile --- a/tests/Makefile Wed Dec 27 16:16:11 2023 +0100 +++ b/tests/Makefile Wed Dec 27 16:18:10 2023 +0100 @@ -35,7 +35,7 @@ all: $(TEST_DIR) $(TEST_DIR)/ucxtest $(TEST_DIR)/ucxtest: $(OBJ) $(build_dir)/libucx_static.a - $(CC) -o $@ $+ + $(CC) -o $@ $(LDFLAGS) $+ $(build_dir)/libucx_static.a: test -f "$@"