diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-06-12 16:08:52 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-06-12 16:08:52 -0300 |
commit | 0084925ab2ec9585c768fedce4c6ea0a95f95b64 (patch) | |
tree | c820dd6b72c09e2b1652e333ac8106712616d3ca | |
parent | 94cf6a5afbc2a978604a755d6d2f23c38789b83e (diff) | |
download | mediapointer-dvb-s2-0084925ab2ec9585c768fedce4c6ea0a95f95b64.tar.gz mediapointer-dvb-s2-0084925ab2ec9585c768fedce4c6ea0a95f95b64.tar.bz2 |
fix: whitespace cleanup were at wrong place
From: Mauro Carvalho Chehab <mchehab@infradead.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
-rwxr-xr-x | mailimport | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mailimport b/mailimport index e6e4df411..318d08aad 100755 --- a/mailimport +++ b/mailimport @@ -86,8 +86,6 @@ apply_patch () { fi done - make whitespace - committer=`grep "Committer:" $TMP2|sed s/"#Committer: "//` if [ "$usemq" != "" ]; then @@ -110,9 +108,12 @@ apply_patch () { echo hg -m "`cat $TMP2|grep -v "^#"`" qnew $name hg qnew -m "`cat $TMP2|grep -v "^#"`" $name + make whitespace hg qrefresh else patch -s -t -p1 -l -N -d $pdir -i $next + make whitespace + if [ "$?" != "0" ]; then echo "*** ERROR at: patch -s -t -p1 -l -N -d $pdir -i $next" exit |