From: Michael Tremer Date: Mon, 4 May 2009 19:34:24 +0000 (+0000) Subject: Fixed compilation of portmapper without tcp-wrappers. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=64c6eedb48190619f2470b719c32dccc3b2d132b;p=ipfire-3.x.git Fixed compilation of portmapper without tcp-wrappers. --- diff --git a/lfs/portmap b/lfs/portmap index e7bc100dc..0b6be3bd2 100644 --- a/lfs/portmap +++ b/lfs/portmap @@ -83,9 +83,11 @@ $(OBJECT): $(objects) @$(PREBUILD) @rm -rf $(DIR_APP) && cd $(DIR_SRC) && $(EXTRACTOR) $(DIR_DL)/$(DL_FILE) - #Patch to allow compile without tcp-wrappers + # Patch to allow compile without tcp-wrappers cd $(DIR_APP) && patch -Np1 -i $(DIR_PATCHES)/portmap-6.0-tcpd.patch - cd $(DIR_APP) && make $(PARALLELISMFLAGS) + + cd $(DIR_APP) && make NO_TCP_WRAPPER=NO $(PARALLELISMFLAGS) cd $(DIR_APP) && make install + @rm -rf $(DIR_APP) @$(POSTBUILD)