summaryrefslogtreecommitdiffstats
path: root/rules/tcpwrapper.make
diff options
context:
space:
mode:
authorMarc Kleine-Budde <mkl@pengutronix.de>2005-10-18 16:16:17 +0000
committerMarc Kleine-Budde <mkl@pengutronix.de>2005-10-18 16:16:17 +0000
commitd920abcd46ac63de89c370ea3df6630b9adcf993 (patch)
tree85b15be737b4a0f80030d46ce025dd5362ba95c8 /rules/tcpwrapper.make
parent65d7435ce6dd3b85dda591a916d8356852aeea30 (diff)
downloadptxdist-d920abcd46ac63de89c370ea3df6630b9adcf993.tar.gz
ptxdist-d920abcd46ac63de89c370ea3df6630b9adcf993.tar.xz
* rules/tcpwrapper.make
cleanup, tcpwrapper uses now the patchin macro git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-0.7-trunk@3238 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/tcpwrapper.make')
-rw-r--r--rules/tcpwrapper.make13
1 files changed, 2 insertions, 11 deletions
diff --git a/rules/tcpwrapper.make b/rules/tcpwrapper.make
index f213ad527..0e06eb33b 100644
--- a/rules/tcpwrapper.make
+++ b/rules/tcpwrapper.make
@@ -25,17 +25,13 @@ TCPWRAPPER_URL = ftp://ftp.porcupine.org/pub/security/$(TCPWRAPPER).tar.gz
TCPWRAPPER_SOURCE = $(SRCDIR)/$(TCPWRAPPER).tar.gz
TCPWRAPPER_DIR = $(BUILDDIR)/$(TCPWRAPPER)
-TCPWRAPPER_PTXPATCH = tcp_wrappers_$(TCPWRAPPER_VERSION)-ptx1
-TCPWRAPPER_PTXPATCH_URL = http://www.pengutronix.de/software/ptxdist/temporary-src/$(TCPWRAPPER_PTXPATCH).diff
-TCPWRAPPER_PTXPATCH_SOURCE = $(SRCDIR)/$(TCPWRAPPER_PTXPATCH).diff
-
# ----------------------------------------------------------------------------
# Get
# ----------------------------------------------------------------------------
tcpwrapper_get: $(STATEDIR)/tcpwrapper.get
-$(STATEDIR)/tcpwrapper.get: $(TCPWRAPPER_SOURCE) $(TCPWRAPPER_PTXPATCH_SOURCE)
+$(STATEDIR)/tcpwrapper.get: $(TCPWRAPPER_SOURCE)
@$(call targetinfo, $@)
$(call touch, $@)
@@ -43,10 +39,6 @@ $(TCPWRAPPER_SOURCE):
@$(call targetinfo, $@)
@$(call get, $(TCPWRAPPER_URL))
-$(TCPWRAPPER_PTXPATCH_SOURCE):
- @$(call targetinfo, $@)
- @$(call get, $(TCPWRAPPER_PTXPATCH_URL))
-
# ----------------------------------------------------------------------------
# Extract
# ----------------------------------------------------------------------------
@@ -57,8 +49,7 @@ $(STATEDIR)/tcpwrapper.extract: $(STATEDIR)/tcpwrapper.get
@$(call targetinfo, $@)
@$(call clean, $(TCPWRAPPER_DIR))
@$(call extract, $(TCPWRAPPER_SOURCE))
- # FIXME: patch repository!
- cd $(TCPWRAPPER_DIR) && patch -p1 < $(TCPWRAPPER_PTXPATCH_SOURCE)
+ @$(call patchin, $(TCPWRAPPER))
$(call touch, $@)
# ----------------------------------------------------------------------------