diff options
author | paul <paul> | 2003-08-27 06:17:18 +0000 |
---|---|---|
committer | paul <paul> | 2003-08-27 06:17:18 +0000 |
commit | fd6ff2fc6b221f2c2c30ef0d29f5e938c1737577 (patch) | |
tree | fa1707523ae5dfd8de02b24500af58dbf82d8a79 /zebra | |
parent | c2f3a4cc771da731f5aedc455e6f6a543acd6e38 (diff) |
2003-08-27 Jay Fenlason <fenlason@redhat.com>
* lib/Makefile.am: Do not use a lib (libcap) as a dependency
* zebra/Makefile.am: Link in libcap
Diffstat (limited to 'zebra')
-rw-r--r-- | zebra/Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/zebra/Makefile.am b/zebra/Makefile.am index ce564672..1df72d73 100644 --- a/zebra/Makefile.am +++ b/zebra/Makefile.am @@ -5,6 +5,7 @@ DEFS = @DEFS@ -DSYSCONFDIR=\"$(sysconfdir)/\" -DMULTIPATH_NUM=@MULTIPATH_NUM@ INSTALL_SDATA=@INSTALL@ -m 600 LIB_IPV6 = @LIB_IPV6@ +LIBCAP = @LIBCAP@ ipforward = @IPFORWARD@ if_method = @IF_METHOD@ @@ -13,10 +14,9 @@ rt_method = @RT_METHOD@ rtread_method = @RTREAD_METHOD@ kernel_method = @KERNEL_METHOD@ other_method = @OTHER_METHOD@ -libcap = @LIBCAP@ otherobj = $(ipforward) $(if_method) $(if_proc) $(rt_method) \ - $(rtread_method) $(kernel_method) $(other_method) $(libcap) + $(rtread_method) $(kernel_method) $(other_method) sbin_PROGRAMS = zebra @@ -28,7 +28,7 @@ noinst_HEADERS = \ connected.h ioctl.h rib.h rt.h zserv.h redistribute.h debug.h rtadv.h \ interface.h ipforward.h -zebra_LDADD = ../lib/libzebra.a $(otherobj) $(LIB_IPV6) +zebra_LDADD = ../lib/libzebra.a $(otherobj) $(LIBCAP) $(LIB_IPV6) zebra_DEPENDENCIES = $(otherobj) |