From d2e5a2416c8a0a446dcf23c6908c0c19947b5fee Mon Sep 17 00:00:00 2001 From: darthgandalf Date: Fri, 24 Dec 2010 19:29:44 +0000 Subject: [PATCH] Fix disabling of modperl, modpython. git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@2210 726aef4b-f618-498e-8847-2d620e286838 --- modules/Makefile.in | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/modules/Makefile.in b/modules/Makefile.in index da555f6c..f023424d 100644 --- a/modules/Makefile.in +++ b/modules/Makefile.in @@ -1,3 +1,5 @@ +all: + SHELL := @SHELL@ # Support out-of-tree builds @@ -57,6 +59,10 @@ ifeq "@EXTRA@" "yes" FILES += $(addprefix extra/, $(notdir $(wildcard $(srcdir)/extra/*.cpp))) endif +include modperl/Makefile.inc +include modpython/Makefile.inc +include Makefile.modtcl + FILES := $(basename $(FILES)) ifeq "@NOSSL@" "1" @@ -117,8 +123,4 @@ uninstall: rmdir $(DESTDIR)$(MODDIR) rmdir $(DESTDIR)$(DATADIR) -include modperl/Makefile.inc -include modpython/Makefile.inc -include Makefile.modtcl - -include $(wildcard .depend/*.dep)