From: Olaf Rempel Date: Wed, 9 Nov 2005 14:25:40 +0000 (+0100) Subject: iproute2-2.6.14-051107: missing arpd directory X-Git-Tag: v2.6.31~49 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e48f73d6a5e90d2f883e15ccedf4f53d26bb6e74;p=thirdparty%2Fiproute2.git iproute2-2.6.14-051107: missing arpd directory arpd requires a directory (/var/lib/arpd/) to run. see attached patch, which lets iproute create this directroy during install. --- diff --git a/Makefile b/Makefile index 6096a9917..ce8dd06b1 100644 --- a/Makefile +++ b/Makefile @@ -4,6 +4,7 @@ SBINDIR=/sbin CONFDIR=/etc/iproute2 DOCDIR=/share/doc/iproute2 MANDIR=/share/man +ARPDDIR=/var/lib/arpd # Path to db_185.h include DBM_INCLUDE:=/usr/include @@ -43,6 +44,7 @@ Config: install: all install -m 0755 -d $(DESTDIR)$(SBINDIR) install -m 0755 -d $(DESTDIR)$(CONFDIR) + install -m 0755 -d $(DESTDIR)$(ARPDDIR) install -m 0755 -d $(DESTDIR)$(DOCDIR)/examples install -m 0755 -d $(DESTDIR)$(DOCDIR)/examples/diffserv install -m 0644 README.iproute2+tc $(shell find examples -maxdepth 1 -type f) \