At 7:44 AM -0500 2/15/02, fliptop wrote:
>
>the version of makerpm.pl you find may not work with rpm version 4.0
>or higher, this will fix that:
>
>572c572
>< } elsif ($rpm_version =~ /rpm\s+version\s+3\.+/i) {
>---
> > } elsif ($rpm_version =~ /rpm\s+version\s+3|4\.+/i) {
Actually I don't think that really "fixes" it...
That's going to search for
rpm\s+version\s+3
or
4\.+
You want
} elsif ($rpm_version =~ /rpm\s+version\s+(?:3|4)\.+/i) {
Rob
--
When I used a Mac, they laughed because I had no command prompt. When
I used Linux, they laughed because I had no GUI.