From 5ea266a199205374cbad425358bdd2ddb6dbc184 Mon Sep 17 00:00:00 2001 From: Uli Schlachter Date: Thu, 1 Nov 2012 15:23:47 +0100 Subject: [PATCH] Fix parallel building of modperl The symptoms looked like this: Packing man page znc-buildmod.1.gz... Generating ZNC API for Perl... Generating ZNC API for Perl... Generating ZNC API for Perl... Linking znc... The reason was that the old rule was executed multiple times in parallel. See the following commit for more information: commit 84ec49780e8ab1e1b26d381e97ddb2323e504ccc Author: Uli Schlachter Date: Sun Sep 23 12:03:22 2012 +0200 Get rid of the modpythin jobhack Signed-off-by: Uli Schlachter --- modules/modperl/Makefile.inc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/modules/modperl/Makefile.inc b/modules/modperl/Makefile.inc index dcc0ea84..2e21991f 100644 --- a/modules/modperl/Makefile.inc +++ b/modules/modperl/Makefile.inc @@ -49,9 +49,7 @@ modperl/ZNC.o: modperl/ZNC.cpp Makefile $(Q)$(CXX) $(MODFLAGS) -I$(srcdir) -MD -MF .depend/modperl.library.dep $(PERL_CXX) -Wno-unused-variable -Wno-shadow -o $@ $< -c ifneq "$(SWIG)" "" -modperl/swigperlrun.h modperl/functions.cpp modperl/ZNC.cpp modperl/ZNC.pm: modperl/codegen.pl modperl/functions.in Makefile - @mkdir -p modperl .depend - $(Q)$(MAKE) -f $(srcdir)/modperl/Makefile.gen $(C) SWIG="$(SWIG)" srcdir="$(srcdir)" PERL="$(PERL)" VERBOSE="$(VERBOSE)" SED="$(SED)" +include $(srcdir)/modperl/Makefile.gen endif modperl_install: install_datadir modperl_all