From: Pavel Charvat Date: Tue, 7 Jan 2014 13:46:08 +0000 (+0100) Subject: Packages: Fixed a typo in Makefile causing unnecessary dependencies. X-Git-Tag: v5.99~43 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=5a361c7774770db1827ce3a4c299cb6dffad31d6;p=libucw.git Packages: Fixed a typo in Makefile causing unnecessary dependencies. --- 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))