I downloaded wine-20031118-1fc1winehq.src.rpm and built the binary RPMs from it, but rpm gives a segmentation fault when I try to install the binary rpms. Does anyone know how to recognize stuff that will break RPM from within an RPM header? It is the wine-debug RPM that crashes rpm. # rpm -ivh /usr/src/redhat/RPMS/i386/wine-* segmentation fault But: # rpm -Uvh /usr/src/redhat/RPMS/i386/wine-* Preparing... ########################################### [100%] 1:wine ########################################### [ 33%] <rpm hangs> [justin@archimedes wine]$ uname -a Linux archimedes.adam-ondi-ahman 2.4.22-1.2129.nptlcustom #3 Tue Dec 2 01:07:47 MST 2003 i686 athlon i386 GNU/Linux Justin
On Wed, 2003-12-03 at 01:34, Justin Findlay wrote:> # rpm -ivh /usr/src/redhat/RPMS/i386/wine-* > segmentation fault > > But: > > # rpm -Uvh /usr/src/redhat/RPMS/i386/wine-* > Preparing... ########################################### [100%] > 1:wine ########################################### [ 33%] > <rpm hangs> > > [justin@archimedes wine]$ uname -a > Linux archimedes.adam-ondi-ahman 2.4.22-1.2129.nptlcustom #3 Tue Dec 2 01:07:47 MST 2003 i686 athlon i386 GNU/LinuxHave you tried rebuilding the rpm database? # rm -rf /var/lib/rpm/__* # rpm --rebuilddb # rpm -Uvh /usr/src/redhat/RPMS/i386/wine-* HTH