mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-02 04:39:01 +00:00
apps/netutils/thttpd: Missing gci-src as a dependency path when building with BINFS enabled
This commit is contained in:
parent
203b6131d0
commit
cee35e124b
1 changed files with 3 additions and 2 deletions
|
|
@ -67,7 +67,7 @@ endif
|
|||
CONFIG_XYZ_PROGNAME ?= thttpd$(EXEEXT)
|
||||
PROGNAME = $(CONFIG_XYZ_PROGNAME)
|
||||
|
||||
ROOTDEPPATH = --dep-path .
|
||||
DEPPATHS = --dep-path .
|
||||
|
||||
# CGI binaries (examples only, not used in the build)
|
||||
|
||||
|
|
@ -85,6 +85,7 @@ endif
|
|||
|
||||
ifeq ($(CONFIG_THTTPD_BINFS),y)
|
||||
BINFS_CSRCS = phf.c redirect.c ssi.c
|
||||
DEPPATHS += --dep-path cgi-src
|
||||
VPATH += :cgi-src
|
||||
endif
|
||||
|
||||
|
|
@ -173,7 +174,7 @@ context:
|
|||
endif
|
||||
|
||||
.depend: Makefile $(SRCS)
|
||||
$(Q) $(MKDEP) $(ROOTDEPPATH) "$(CC)" -- $(CFLAGS) -- $(SRCS) >Make.dep
|
||||
$(Q) $(MKDEP) $(DEPPATHS) "$(CC)" -- $(CFLAGS) -- $(SRCS) >Make.dep
|
||||
$(Q) touch $@
|
||||
|
||||
depend: .depend
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue