diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2010-02-21 10:14:41 +0100 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2010-02-21 10:14:41 +0100 |
commit | e285bd236e9cd42e3f92db3a35b5ec2d307c7a48 (patch) | |
tree | 2d027789f9416c4a99320e19061c7a7de265dea4 /tools | |
parent | e0a45fb42163a6bfdeeee44bd0a6a7461552e10f (diff) | |
download | bird-e285bd236e9cd42e3f92db3a35b5ec2d307c7a48.tar bird-e285bd236e9cd42e3f92db3a35b5ec2d307c7a48.zip |
Fixes installation (missing /usr/local/var/run).
Diffstat (limited to 'tools')
-rw-r--r-- | tools/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/Makefile.in b/tools/Makefile.in index daa753c..99ae225 100644 --- a/tools/Makefile.in +++ b/tools/Makefile.in @@ -55,7 +55,7 @@ tags: cd $(srcdir) ; etags -lc `find $(static-dirs) $(addprefix $(objdir)/,$(dynamic-dirs)) $(client-dirs) -name *.[chY]` install: all - $(INSTALL) -d $(DESTDIR)/$(sbindir) $(DESTDIR)/$(sysconfdir) $(DESTDIR)/$(localstatedir) + $(INSTALL) -d $(DESTDIR)/$(sbindir) $(DESTDIR)/$(sysconfdir) $(DESTDIR)/$(localstatedir)/run $(INSTALL_PROGRAM) -s $(exedir)/bird $(DESTDIR)/$(sbindir)/bird@SUFFIX6@ if test -n "@CLIENT@" ; then \ $(INSTALL_PROGRAM) -s $(exedir)/birdc $(DESTDIR)/$(sbindir)/birdc@SUFFIX6@ ; \ |