Please do not reply directly to this email. All additional comments should be made in the comments box of this bug report.
Summary: Unpackaged files at rebuilding perl
https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=167205
redhat-bugzilla@linuxnetz.de changed:
What |Removed |Added ---------------------------------------------------------------------------- Keywords| |EasyFix
------- Additional Comments From redhat-bugzilla@linuxnetz.de 2005-09-01 09:45 EST ------- I had time to look for it and got it, Warren: My build system has /usr/share/ scripts, which is prefered, if no other directory is specified. The directory / usr/share/scripts is used by some irssi (rpm) packages for example for sharing public irssi perl scripts.
I think, it really should hurt absolutely nobody, if we define /usr/bin for the scripts in the perl spec file to avoid the auto-detection of perl's configure script.
The following change solves the problem in a very sane way for me, could this patch applied to CVS/Rawhide, please?! Marking this bug as EasyFix:
------ --- perl.spec 2005-08-29 00:56:18.000000000 +0200 +++ perl.spec.rsc 2005-09-01 15:42:42.000000000 +0200 @@ -312,7 +312,8 @@ -Dd_gethostent_r_proto -Ud_endhostent_r_proto -Ud_sethostent_r_proto \ -Ud_endprotoent_r_proto -Ud_setprotoent_r_proto \ -Ud_endservent_r_proto -Ud_setservent_r_proto \ - -Dinc_version_list='%{perlmodcompat}' + -Dinc_version_list='%{perlmodcompat}' \ + -Dscriptdir='%{_bindir}'
make
------