summaryrefslogtreecommitdiff
path: root/udev.spec
diff options
context:
space:
mode:
authorgreg@kroah.com <greg@kroah.com>2004-05-14 23:08:04 -0700
committerGreg KH <gregkh@suse.de>2005-04-26 21:35:17 -0700
commit1eae2f3f712ff839bf80721bf9c44a76a78460dc (patch)
tree4e00c916048cbf17213ff4f7a2a70fdd6a172481 /udev.spec
parent91cb2628950fc80e719983fa86dbb616af3e94f0 (diff)
[PATCH] add volume_id support to the udev.spec file
Diffstat (limited to 'udev.spec')
-rw-r--r--udev.spec18
1 files changed, 18 insertions, 0 deletions
diff --git a/udev.spec b/udev.spec
index 0c8969dfac..79b6952415 100644
--- a/udev.spec
+++ b/udev.spec
@@ -22,6 +22,11 @@
# 1 - build it
%define scsi_id 1
+# if we want to build the volume_id "extra" package or not
+# 0 - do not build the package
+# 1 - build it
+%define volume_id 1
+
Summary: A userspace implementation of devfs
Name: udev
Version: 025
@@ -61,6 +66,9 @@ make CC="gcc $RPM_OPT_FLAGS" \
%if %{scsi_id}
extras/scsi_id \
%endif
+%if %{volume_id}
+ extras/volume_id \
+%endif
"
%install
@@ -69,6 +77,9 @@ make DESTDIR=$RPM_BUILD_ROOT install \
%if %{scsi_id}
extras/scsi_id \
%endif
+%if %{volume_id}
+ extras/volume_id \
+%endif
"
%post
@@ -107,8 +118,15 @@ rm -rf $RPM_BUILD_ROOT
%config(noreplace) %attr(0644,root,root) /etc/scsi_id.config
%attr(0644,root,root) %{_mandir}/man8/scsi_id*.8*
%endif
+%if %{volume_id}
+ %attr(755,root,root) /sbin/udev_volume_id
+%endif
%changelog
+* Fri May 14 2004 Greg Kroah-Hartman <greg@kroah.com>
+- remove dbus and selinux stuff from here
+- added volume_id option
+
* Wed Mar 24 2004 Greg Kroah-Hartman <greg@kroah.com>
- change the way dbus and selinux support is built (now an extra)