From 74833f450031402a57c099e2d1ef1409420dd43e Mon Sep 17 00:00:00 2001 From: Jan Lindemann Date: Thu, 3 Jun 2004 21:37:18 +0000 Subject: [PATCH] autoconf.mk: Use only autoconfig input files to directory depth of 2 --- make/autoconf.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/make/autoconf.mk b/make/autoconf.mk index 0b05a3ec..19db1843 100644 --- a/make/autoconf.mk +++ b/make/autoconf.mk @@ -4,9 +4,9 @@ # $Id$ CONFIG_ACDONE := $(wildcard config.acdone) -CLEAN += $(wildcard *.acdone) +CLEAN = $(wildcard *.acdone) DISTCLEAN += configure config.log autoscan.log configure.ac config.status -AC_FILES_IN = $(shell find . -name '*.in' | grep -ve "contrib\|dist\|nomake") +AC_FILES_IN = $(shell find . -name '*.in' -maxdepth 2 | grep -ve "contrib\|dist\|nomake") AC_FILES = $(basename $(AC_FILES_IN)) all: config $(AC_FILES)