From e48f73d6a5e90d2f883e15ccedf4f53d26bb6e74 Mon Sep 17 00:00:00 2001 From: Olaf Rempel Date: Wed, 9 Nov 2005 15:25:40 +0100 Subject: [PATCH] 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. --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 6096a991..ce8dd06b 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) \ -- 2.39.2