# New Ticket Created by [EMAIL PROTECTED] # Please include the string: [perl #53552] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=53552 >
Hello, the command "rpm -ba parrot.spec" doesn't work under linux (Fedora, SuSE). So this patch is responsible that a generated "Makefile" rather holds the command "rpmbuild -ba parrot.spec". Gerd Pokorra
--- config/gen/makefiles/root.in 2008-04-15 19:19:39.000000000 +0200 +++ config/gen/makefiles/root.in.new 2008-04-30 10:32:54.000000000 +0200 @@ -2129,7 +2129,7 @@ rpms : release sudo cp parrot-$(VERSION).tar.gz /usr/src/*/SOURCES sudo cp parrot.spec /usr/src/*/SPECS - cd /usr/src/*/SPECS @make_and@ sudo rpm -ba parrot.spec + cd /usr/src/*/SPECS @make_and@ sudo rpmbuild -ba parrot.spec win32-inno-installer : world installable $(PERL) tools/dev/mk_inno.pl --version=$(VERSION) --prefix=$(PREFIX) [EMAIL PROTECTED]@