loop/Makefile.in: convert .config -> scripts/autoconf.mk

Convert loop's Makefile.in to use the generated Makefile-snippet
scripts/autoconf.mk instead of the shell-script snippet .config.
This commit is contained in:
Peter Marschall 2012-04-20 11:41:22 +02:00
parent 232fa2e196
commit 6a29b5c629
1 changed files with 2 additions and 2 deletions

View File

@ -17,8 +17,8 @@ INSTALL_PROGRAM = $(INSTALL) -o 0 -g 0 -m 0750
INSTALL_MAN = $(INSTALL) -o 0 -g 0 -m 0644
prefix = @prefix@
exec_prefix = @exec_prefix@
ifeq (../.config,$(wildcard ../.config))
include ../.config
ifeq (../scripts/autoconf.mk,$(wildcard ../scripts/autoconf.mk))
include ../scripts/autoconf.mk
ifeq ($(CONFIG_LOOPCTRL_DEBUG),y)
DEFS += -DDEBUGVAR
endif