defs.mk: Fix CCONSOLE LIBFLAGS (missing -L)

This commit is contained in:
Jan Lindemann 2009-06-08 12:34:01 +00:00 committed by Jan Lindemann
commit 64ccafd888

View file

@ -674,10 +674,10 @@ USE_DSPROUT = true
USE_FEEDFS = true USE_FEEDFS = true
INCLUDE += -I$(CCONSOLE_DIR)/include INCLUDE += -I$(CCONSOLE_DIR)/include
ifeq ($(DEVELOPMENT),true) ifeq ($(DEVELOPMENT),true)
LIBFLAGS += $(CCONSOLE_DIR)/lib LIBFLAGS += -L$(CCONSOLE_DIR)/lib
else else
# this is actually redundant to a definition in proj/dspc/src/cconsole/make/cfg_dist.mk: # this is actually redundant to a definition in proj/dspc/src/cconsole/make/cfg_dist.mk:
LIBFLAGS += $(ENV_PREFIX)/opt/$(FLAVOUR_PATH_PREFIX)dspider/feedfs/bin LIBFLAGS += -L$(ENV_PREFIX)/opt/$(FLAVOUR_PATH_PREFIX)dspider/feedfs/bin
endif endif
LIBFLAGS += -ldspider-cconsole LIBFLAGS += -ldspider-cconsole
endif endif