How can I tell what patch system this package is using?

Asked by Justin R. Andrusk

Need to determine what patch system the ember package uses. I'm in the process of creating a security patch for ember.

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu ember Edit question
Assignee:
No assignee Edit question
Solved by:
Justin R. Andrusk
Solved:
Last query:
Last reply:
Revision history for this message
mycae (mycae) said :
#1

Its using the common debian buildsystem's (now deprecated) simple-patchsys.mk.
http://lintian.debian.org/tags/debian-rules-uses-deprecated-makefile.html

https://wiki.ubuntu.com/PackagingGuide/Howtos/CDBSSimplePatchsys

This is clear from the debian/rules file
+++ ember-0.5.7/debian/rules
... (stuff) ...
+include /usr/share/cdbs/1/rules/simple-patchsys.mk

Revision history for this message
Justin R. Andrusk (jandrusk) said :
#2

Thanks, that's what I was looking for.