mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-03-13 08:01:09 +00:00
improve what-patch's output, bug #195795
This commit is contained in:
parent
5ffa62013b
commit
1a5734185c
4
debian/changelog
vendored
4
debian/changelog
vendored
@ -2,6 +2,10 @@ ubuntu-dev-tools (0.31) UNRELEASED; urgency=low
|
||||
|
||||
* pbuilder-dist:
|
||||
- Rewrite the script in Python to make it more robust and faster.
|
||||
- ^^^ NOT FINISHED YET, DO NOT UPLOAD THIS! ^^^
|
||||
* what-patch:
|
||||
- If cdbs-edit-patch is used, output "cdbs (patchsys.mk)" instead of
|
||||
just "cdbs" (LP: #195795).
|
||||
|
||||
-- Siegfried-Angel Gevatter Pujals (RainCT) <rainct@ubuntu.com> Tue, 08 Apr 2008 16:48:35 +0200
|
||||
|
||||
|
@ -44,7 +44,7 @@ fi
|
||||
|
||||
for filename in $(echo "debian/rules"; grep ^include debian/rules | fgrep -v '$(' | awk '{print $2}')
|
||||
do
|
||||
fgrep patchsys.mk "$filename" | grep -q -v "^#" && { echo "cdbs"; exit 0; }
|
||||
fgrep patchsys.mk "$filename" | grep -q -v "^#" && { echo "cdbs (patchsys.mk)"; exit 0; }
|
||||
fgrep quilt "$filename" | grep -q -v "^#" && { echo "quilt"; exit 0; }
|
||||
fgrep dbs-build.mk "$filename" | grep -q -v "^#" && { echo "dbs"; exit 0; }
|
||||
fgrep dpatch "$filename" | grep -q -v "^#" && { echo "dpatch"; exit 0; }
|
||||
|
Loading…
x
Reference in New Issue
Block a user