diff options
author | paul <paul> | 2003-10-24 04:24:39 +0000 |
---|---|---|
committer | paul <paul> | 2003-10-24 04:24:39 +0000 |
commit | ff7c65cf6ae73d1f02ee7f8fe44e51413c569b3b (patch) | |
tree | 1d16c4833f19afaec4f5cdf5cb46a71546691f69 /ospf6d | |
parent | 0d5bcd5a8717cecd94d36447c7ae5072a2a6bb6c (diff) | |
download | quagga-ff7c65cf6ae73d1f02ee7f8fe44e51413c569b3b.tar.bz2 quagga-ff7c65cf6ae73d1f02ee7f8fe44e51413c569b3b.tar.xz |
2003-10-24 Paul Jakma <paul@dishone.st>
* configure.ac: Check for fcntl()
* {bgpd,ospf,ospf6d,ripd,ripngd}/Makefile.am: Install conf file via
regular automake means, not magic install incantations, see
bug #38.
* lib/Makefile.am: install the headers, needed to link libzebra.a
(and hence libospf.a, OSPF-API, etc.)
Diffstat (limited to 'ospf6d')
-rw-r--r-- | ospf6d/Makefile.am | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/ospf6d/Makefile.am b/ospf6d/Makefile.am index e42814af..115b8196 100644 --- a/ospf6d/Makefile.am +++ b/ospf6d/Makefile.am @@ -30,19 +30,4 @@ ospf6d_SOURCES = \ ospf6d_LDADD = -L../lib -lzebra @LIBCAP@ -sysconf_DATA = ospf6d.conf.sample - -EXTRA_DIST = $(sysconf_DATA) - -install-sysconfDATA: $(sysconf_DATA) - @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(sysconfdir) - @list='$(sysconf_DATA)'; for p in $$list; do \ - if test -f $(srcdir)/$$p; then \ - echo " $(INSTALL_SDATA) $(srcdir)/$$p $(DESTDIR)$(sysconfdir)/$$p"; \ - $(INSTALL_SDATA) $(srcdir)/$$p $(DESTDIR)$(sysconfdir)/$$p; \ - else if test -f $$p; then \ - echo " $(INSTALL_SDATA) $$p $(DESTDIR)$(sysconfdir)/$$p"; \ - $(INSTALL_SDATA) $$p $(DESTDIR)$(sysconfdir)/$$p; \ - fi; fi; \ - done +dist_sysconf_DATA = ospf6d.conf.sample |