1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-20 00:15:31 +00:00

Strip $(OBJS) for whitespace before comparing it

This commit is contained in:
Jonas Fonseca 2006-01-14 14:46:23 +01:00 committed by Jonas Fonseca
parent 082031c10c
commit 97fcc99f4d

View File

@ -104,7 +104,7 @@ DEP_FILES_1 = $(foreach src,$(OBJS),.deps/$(src))
DEP_FILES = $(DEP_FILES_1:%.o=%.P)
DEPS_MAGIC := $(shell mkdir .deps > /dev/null 2>&1 || :)
ifneq ($(OBJS),)
ifneq ($(strip $(OBJS)),)
-include $(DEP_FILES)
OBJS += $(LIB_O_NAME)
endif