1
0
mirror of https://gitlab.labs.nic.cz/labs/bird.git synced 2024-05-11 16:54:54 +00:00

Small change to make BIRD's IPv6 packaging easier

This commit is contained in:
Ondrej Filip
2009-06-02 00:28:08 +02:00
parent 9be1086d29
commit dc16584ac2
3 changed files with 11 additions and 8 deletions

View File

@@ -44,12 +44,12 @@ tags:
install: all
$(INSTALL) -d $(sbindir) $(sysconfdir) $(localstatedir)
$(INSTALL_PROGRAM) -s $(exedir)/bird $(sbindir)/
$(INSTALL_PROGRAM) -s $(exedir)/bird $(sbindir)/bird@SUFFIX6@
if test -n "@CLIENT@" ; then \
$(INSTALL_PROGRAM) -s $(exedir)/birdc $(sbindir)/ ; \
$(INSTALL_PROGRAM) -s $(exedir)/birdc $(sbindir)/birdc@SUFFIX6@ ; \
fi
if ! test -f $(sysconfdir)/bird.conf ; then \
$(INSTALL_DATA) $(srcdir)/doc/bird.conf.example $(sysconfdir)/bird.conf ; \
if ! test -f $(sysconfdir)/bird.@SUFFIX6@conf ; then \
$(INSTALL_DATA) $(srcdir)/doc/bird.conf.example $(sysconfdir)/bird@SUFFIX6@.conf ; \
else \
echo "Not overwriting old bird.conf" ; \
fi