[Bug 490866] New: kernel: devel suggestion improvement
https://bugzilla.novell.com/show_bug.cgi?id=490866 Summary: kernel: devel suggestion improvement Classification: openSUSE Product: openSUSE 11.2 Version: Alpha 0 Platform: All OS/Version: Linux Status: NEW Severity: Enhancement Priority: P5 - None Component: Kernel AssignedTo: jblunck@novell.com ReportedBy: jengelh@medozas.de QAContact: qa@suse.de CC: dgollub@novell.com Found By: Beta-Customer I did the following change because it makes searching for faulty patches much easier. Just wanted to bring it to your attention. *** and somewhere add BuildRequires: quilt --- a/rpm/kernel-binary.spec.in +++ b/rpm/kernel-binary.spec.in @@ -253,10 +253,8 @@ cd linux-@SRCVERSION@ # Apply the patches needed for this architecture. %if ! %build_vanilla for patch in $(%_sourcedir/guards %symbols < %_sourcedir/series.conf); do - if ! patch -s -F0 -E -p1 --no-backup-if-mismatch -i ../$patch; then - echo "*** Patch $patch failed ***" - exit 1 - fi + quilt import "../$patch"; + quilt push || exit 1; done %else for patch in $(%_sourcedir/guards %symbols < %_sourcedir/series.conf | egrep ke On a related note, I could have also used git because it has true bisect (with quilt you have to calculate the steps yourself), but making a git tree out of it... takes its time sometimes. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
participants (1)
-
bugzilla_noreply@novell.com