From: Olof J. <ol...@et...> - 2013-05-11 19:29:30
|
The "autoconf shit" was removed 2007 :-). --- build/system-inc.mk | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/build/system-inc.mk b/build/system-inc.mk index f500cee..b52633f 100644 --- a/build/system-inc.mk +++ b/build/system-inc.mk @@ -1,20 +1,8 @@ -# Use system-ac.mk if it exist, system-autodetect.mk otherwise. - ifndef TOPDIR TOPDIR=. endif -SYSTEM_MK = $(TOPDIR)/system-autodetect.mk -AC_SYSTEM_MK = $(TOPDIR)/build/ac/system-ac.mk - -ifeq ($(AC_SYSTEM_MK),$(wildcard $(AC_SYSTEM_MK))) - # Using system-ac.mk - include $(AC_SYSTEM_MK) -else - # Not using system-ac.mk - include $(SYSTEM_MK) -endif - +include $(TOPDIR)/system-autodetect.mk include $(TOPDIR)/build/libs.mk -include $(TOPDIR)/system-local.mk -- 1.7.10.4 |