From d905fb803a17d745f45b1f492309f903e4c42e86 Mon Sep 17 00:00:00 2001 From: Petr Baudis Date: Tue, 28 Aug 2007 23:35:22 +0200 Subject: [PATCH] Makefile.lib: Fix the $(OBJS) rule --- Makefile.lib | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.lib b/Makefile.lib index 3eef2857..d48f0880 100644 --- a/Makefile.lib +++ b/Makefile.lib @@ -75,7 +75,7 @@ quiet_cmd_uninstall = " [$(UNINSTALL_COLOR)UNINSTALL$(END_COLOR)] $(3)/$(n # Special handling of conditional variables SUBDIRS += $(SUBDIRS-yes) $(SUBDIRS-unlessno) $(SUBDIRS-unless) -OBJS += $(OBJS-yes) $(OBJS-unlessno) $(SUBDIRS-unless) +OBJS += $(OBJS-yes) $(OBJS-unlessno) $(OBJS-unless) ALTDIRS = $(SUBDIRS-no) $(SUBDIRS-) $(SUBDIRS-unlessyes) ALTOBJS = $(OBJS-no) $(OBJS-) $(OBJS-unlessyes)