Hide Forgot
When building rhythmbox-2.99.1-4.srpm with lirc-devel install will render two unpackaged files: error: Installed (but unpackaged) file(s) found: /usr/lib64/rhythmbox/plugins/rblirc/librblirc.so /usr/lib64/rhythmbox/plugins/rblirc/rblirc.plugin The absence of lirc-devel will result in a successful build (the above files will not be created in that case). To avoid the lirc plugin from being built in an environment where lirc-devel is installed add --enable-lirc=no to the configure step in the SPEC file. This makes explicit what is now implicit, i.e. that the lirc plugin is not being built. When the intention is to build with the lirc plugin a BuildRequires lirc-devel should be added to the SPEC file. Adding --enable-lirc to the configure step is not required as configure will pick up the installed lirc-devel. --- rhythmbox.spec-2.99.1-4 2015-05-21 19:39:38.000000000 +0200 +++ rhythmbox.spec 2016-02-13 21:17:00.466096997 +0100 @@ -83,6 +83,7 @@ a Rhythmbox plugin. %build %configure \ --with-ipod \ + --enable-lirc=no \ --without-hal make %{?_smp_mflags}
RPM files are made to be built in a stable and clean environment, so this really isn't a problem for building RHEL packages.
Development Management has reviewed and declined this request. You may appeal this decision by reopening this request.