Fix stupid mistake.

This commit is contained in:
Tom Callaway 2006-04-03 02:21:05 +00:00
parent 8f0d6c6f84
commit c86c85e3dd
1 changed files with 7 additions and 3 deletions

View File

@ -2,7 +2,7 @@
Name: ebtables
Version: 2.0.8
Release: 0.4.%{prever}%{?dist}
Release: 0.5.%{prever}%{?dist}
Summary: Ethernet Bridge frame table administration tool
License: GPL
Group: System Environment/Base
@ -33,8 +33,9 @@ make %{?_smp_mflags} CFLAGS="$MY_CFLAGS"
%install
rm -rf $RPM_BUILD_ROOT
install -D -m0755 extensions/*.so $RPM_BUILD_ROOT%{_libdir}
install -D -m0755 *.so $RPM_BUILD_ROOT%{_libdir}
mkdir -p $RPM_BUILD_ROOT%{_libdir}
install -m0755 extensions/*.so $RPM_BUILD_ROOT%{_libdir}
install -m0755 *.so $RPM_BUILD_ROOT%{_libdir}
install -D -m0755 ebtables $RPM_BUILD_ROOT/sbin/ebtables
install -D -m0755 %{SOURCE1} $RPM_BUILD_ROOT%{_initrddir}/ebtables
install -D -m0644 ethertypes $RPM_BUILD_ROOT%{_sysconfdir}/ethertypes
@ -75,6 +76,9 @@ fi
%ghost %{_sysconfdir}/ebtables.broute
%changelog
* Sun Apr 2 2006 Tom "spot" Callaway <tcallawa@redhat.com> 2.0.8-0.5.rc1
- learn to use "install" correctly. :/
* Sun Apr 2 2006 Tom "spot" Callaway <tcallawa@redhat.com> 2.0.8-0.4.rc1
- package up the shared libs too