topdir-autoconf.mk: Check three levels deep for autoconfigured files

Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
Jan Lindemann 2015-07-08 13:01:21 +00:00
commit 007588f480

View file

@ -1,5 +1,6 @@
AUTOCONF_IN = $(wildcard *.in */*.in)
AUTOCONF_GENERATED = $(patsubst %.in,%,$(AUTOCONF_IN))
AUTOCONF_IN := $(wildcard *.in */*.in */*/*.in)
# AUTOCONF_IN := $(shell find . -maxdepth 3 -name '*.in' | grep -v dist)
AUTOCONF_GENERATED := $(patsubst %.in,%,$(AUTOCONF_IN))
ifneq ($(AUTOCONF_IN),)
ifneq ($(AUTOCONF_GENERATED),$(wildcard $(AUTCONF_GENERATED)))