]> git.ipfire.org Git - thirdparty/iproute2.git/commitdiff
iproute2-2.6.14-051107: missing arpd directory
authorOlaf Rempel <razzor@kopf-tisch.de>
Wed, 9 Nov 2005 14:25:40 +0000 (15:25 +0100)
committerStephen Hemminger <stephen.hemminger@vyatta.com>
Fri, 27 Mar 2009 18:26:57 +0000 (11:26 -0700)
arpd requires a directory (/var/lib/arpd/) to run.
see attached patch, which lets iproute create this directroy during install.

Makefile

index 6096a99179d1ba38cbd36f30ee95f66043806296..ce8dd06b1cbe7c06becbd1c58f3ff37b03a5c312 100644 (file)
--- 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) \