diff options
author | paul <paul> | 2004-10-07 16:23:36 +0000 |
---|---|---|
committer | paul <paul> | 2004-10-07 16:23:36 +0000 |
commit | 69f5d260d6a6532b04a931f68899b89859576665 (patch) | |
tree | 03e5e990770d48aff82ca285602e53d725466d4b /redhat/quagga.spec.in | |
parent | aa20c6f1799a7ca86afb19aee246356c5499e87a (diff) |
- make specfile actually work
Diffstat (limited to 'redhat/quagga.spec.in')
-rw-r--r-- | redhat/quagga.spec.in | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/redhat/quagga.spec.in b/redhat/quagga.spec.in index 24e3cb07..28443088 100644 --- a/redhat/quagga.spec.in +++ b/redhat/quagga.spec.in @@ -34,10 +34,12 @@ %define quagga_gid 92 %define daemon_list zebra ripd ospfd bgpd %if %{with_ipv6} -%define daemon_list %{daemon_list} ripngd ospf6d +%define daemonv6_list %{daemon_list} ripngd ospf6d %endif %if %{with_isisd} -%define daemon_list %{daemon_list} isisd +%define daemon_other isisd +%else +%define daemon_other "" %endif # allow build dir to be kept @@ -146,7 +148,7 @@ developing OSPF-API and quagga applications. %if %{with_isisd} --enable-isisd \ %else - --disable-isisd + --disable-isisd \ %endif %if %{with_pam} --with-libpam \ @@ -179,7 +181,7 @@ make install \ rm -rf $RPM_BUILD_ROOT/usr/share/info/dir # install etc sources -for daemon in %daemon_list ; do +for daemon in %{daemon_list} %{daemonv6_list} %{daemon_other} ; do install %{zeb_rh_src}/${daemon}.init \ $RPM_BUILD_ROOT/etc/rc.d/init.d/${daemon} done |