http://qa.mandrakesoft.com/show_bug.cgi?id=4078
------- Additional Comments From [EMAIL PROTECTED] 2003-21-07 22:09 -------
on closer consideration... this is a bug in rpm actually. /usr/share may not
contain executable scripts.
Of course the spec should be updated to enforce this:
~/src/RPM% diff -u cvs.spec SPECS/cvs.spec
--- cvs.spec 2003-06-04 20:31:00.000000000 +0200
+++ SPECS/cvs.spec 2003-07-21 20:19:33.000000000 +0200
@@ -91,19 +91,20 @@
%_remove_install_info cvsclient.info
%files
-%defattr(-,root,root)
-%doc BUGS FAQ MINOR-BUGS NEWS PROJECTS TODO README
-%doc doc/*.ps.bz2
-%config(noreplace) /etc/xinetd.d/%{name}
+%defattr(0755,root,root,-)
%{_bindir}/cvs
%{_bindir}/cvsbug
%{_bindir}/rcs2log
+%{_sbindir}/cvspserver
+%defattr(0644,root,root,-)
+%doc BUGS FAQ MINOR-BUGS NEWS PROJECTS TODO README
+%doc doc/*.ps.bz2
+%config(noreplace) /etc/xinetd.d/%{name}
%{_mandir}/man1/cvs.1*
%{_mandir}/man5/cvs.5*
%{_mandir}/man8/cvsbug.8*
%{_infodir}/cvs*
%{_datadir}/cvs
-%{_sbindir}/cvspserver
%config(noreplace) %{_sysconfdir}/cvs/cvs.conf
%changelog
But after that rpm still finds a tcsh dependency. And that really is a bug in rpm.
--
Configure bugmail: http://qa.mandrakesoft.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
------- Reminder: -------
assigned_to: [EMAIL PROTECTED]
status: NEW
creation_date:
description:
It's not mentioned in the specfile so I assume the build-process picked up some
fancy dependency on the installed tcsh on the buildhost. Though I can't find it.
Please doublecheck this dependency.