From 54956c594af0709406bd5ad4215ec6455c98d290 Mon Sep 17 00:00:00 2001 From: Lucian Langa Date: Wed, 5 May 2010 05:26:44 +0000 Subject: [PATCH] fix typo in group handling --- libftdi.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/libftdi.spec b/libftdi.spec index f9aaa37..3ca96b3 100644 --- a/libftdi.spec +++ b/libftdi.spec @@ -1,7 +1,7 @@ %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: libftdi Version: 0.17 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Library to program and control the FTDI USB controller Group: System Environment/Libraries @@ -129,7 +129,7 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libftdipp.pc %pre -getent group GROUPNAME >/dev/null || groupadd -r plugdev +getent group plugdev >/dev/null || groupadd -r plugdev exit 0 %post -p /sbin/ldconfig @@ -139,6 +139,9 @@ exit 0 %postun c++ -p /sbin/ldconfig %changelog +* Wed May 05 2010 Lucian Langa - 0.17-4 +- fix typo in group handling (#581151) + * Thu Mar 11 2010 Lucian Langa - 0.17-3 - fix incorrect UDEV rule (#563566)