From 5a361c7774770db1827ce3a4c299cb6dffad31d6 Mon Sep 17 00:00:00 2001 From: Pavel Charvat Date: Tue, 7 Jan 2014 14:46:08 +0100 Subject: [PATCH] Packages: Fixed a typo in Makefile causing unnecessary dependencies. --- ucw/Makefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ucw/Makefile b/ucw/Makefile index 88b7064a..60007a22 100644 --- a/ucw/Makefile +++ b/ucw/Makefile @@ -88,15 +88,15 @@ include $(s)/ucw/doc/Makefile LIBUCW_MOD_PATHS=$(addprefix $(o)/ucw/,$(LIBUCW_MODS)) export LIBUCW_LIBS= -#ifdef CONFIG_UCW_THREADS +ifdef CONFIG_UCW_THREADS LIBUCW_LIBS+=-lpthread -#endif -#ifdef CONFIG_UCW_PCRE +endif +ifdef CONFIG_UCW_PCRE LIBUCW_LIBS+=-lpcre -#endif -#ifdef CONFIG_UCW_MONOTONIC_CLOCK +endif +ifdef CONFIG_UCW_MONOTONIC_CLOCK LIBUCW_LIBS+=-lrt -#endif +endif $(o)/ucw/libucw$(LV).a: $(addsuffix .o,$(LIBUCW_MOD_PATHS)) $(o)/ucw/libucw$(LV)-pic.a: $(addsuffix .oo,$(LIBUCW_MOD_PATHS)) -- 2.39.2