I'm new to rpmbuild, so maybe this is normal, but I'm getting a weird error trying to build an RPM from source. This is the error I'm getting... It's at the very end after it's compiled, when it trys to build the actual RPM.
---------------------------
+ cp -pr README INSTALL Changelog AUTHORS /usr/share/doc/aMule-1.1.2 + exit 0 warning: File listed twice: /usr/local/share/locale/it/LC_MESSAGES/amule.mo warning: File listed twice: /usr/local/share/locale/ko/LC_MESSAGES/amule.mo Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Requires: libX11.so.6 libc.so.6 libc.so.6(GLIBC_2.0) libc.so.6(GLIBC_2.1) libc.so.6(GLIBC_2.1.2) libc.so.6(GLIBC_2.1.3) libc.so.6(GLIBC_2.2) libc.so.6(GLIBC_2.3) libgcc_s.so.1 libgcc_s.so.1(GCC_3.0) libgcc_s.so.1(GLIBC_2.0) libgdk-1.2.so.0 libglib-1.2.so.0 libgtk-1.2.so.0 libm.so.6 libm.so.6(GLIBC_2.0) libpthread.so.0 libpthread.so.0(GLIBC_2.0) libpthread.so.0(GLIBC_2.1) libpthread.so.0(GLIBC_2.2) libstdc++.so.5 libstdc++.so.5(CXXABI_1.2) libstdc++.so.5(GLIBCPP_3.2) libwx_gtk-2.4.so.0 libwx_gtk-2.4.so.0(WXGTK_2.4) libz.so.1 wxGTK > 2.4 Processing files: aMule-debuginfo-1.1.2-1 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Checking for unpackaged file(s): /usr/lib/rpm/check-files %{buildroot} getOutputFrom(): Broken pipe
Scott Baker - Network Engineer - RHCE bakers @ web-ster . com - 503.266.8253
On Fri, 21 Nov 2003 14:06:01 -0800, Scott Baker wrote:
I'm new to rpmbuild, so maybe this is normal, but I'm getting a weird error trying to build an RPM from source. This is the error I'm getting... It's at the very end after it's compiled, when it trys to build the actual RPM.
Checking for unpackaged file(s): /usr/lib/rpm/check-files %{buildroot} getOutputFrom(): Broken pipe
This is because the .spec file is missing a definition of a build-root directory in the "Buildroot:" field, e.g. fedora.us's current build-root definition is this:
Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot-%(%{__id_u}
--