Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/mkChangeLog
diff options
context:
space:
mode:
authorBert Freudenberg <bert@ubuntu.(none)>2007-06-14 14:04:40 (GMT)
committer Bert Freudenberg <bert@ubuntu.(none)>2007-06-14 14:04:40 (GMT)
commit7eb36201aeb0ff5fdc9e307428aff5bc49a0b372 (patch)
treef6680ad1846217ea3f708f35395198eb3353ba64 /mkChangeLog
parent555809349cc3edc8f414dae2823873c25f49590f (diff)
Improve mkChangeLog to omit code from changeset preambles
Diffstat (limited to 'mkChangeLog')
-rwxr-xr-xmkChangeLog2
1 files changed, 1 insertions, 1 deletions
diff --git a/mkChangeLog b/mkChangeLog
index 42e214b..5dd5374 100755
--- a/mkChangeLog
+++ b/mkChangeLog
@@ -23,7 +23,7 @@ for f in $UPDATES ; do
echo === $f === >> $OUT
cat updates/$f \
| $LF \
- | awk '/^"/{p=1};{if(p)print};/\!/{c=c+1;if(p||c>1)exit}' \
+ | awk '/"/{if(p){print;exit}};/^"/{p=1};{if(p)print};/\!/{c=c+1;if(c>1)exit;if(p){print;exit}}' \
| sed 's/"//g;s/!//g' \
>> $OUT
done