X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=deblob-main;h=51e232a13691f854a3836effa28abdeb7c373a6a;hb=0bf0fc2dabd545eefa194bb41f75f88f010af1b7;hp=9f5d66558e9e5f4d834d092147cf352733a658c3;hpb=ba348ce740ead9e7fa3b17e8999eb9ea2095a070;p=releases.git diff --git a/deblob-main b/deblob-main index 9f5d66558e9e..51e232a13691 100755 --- a/deblob-main +++ b/deblob-main @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 2008 Alexandre Oliva +# Copyright (C) 2008, 2009 Alexandre Oliva # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -63,7 +63,7 @@ esac mver=$1 extra=$2 sver=$3 kver=$mver$sver libre=libre$extra -deblob= dir=`echo $0 | sed 's,/[^/]*$,,'` +deblob= dir=`echo "$0" | sed 's,[^/]*$,,;s,^$,.,;s,/*$,,'` if test ! -f linux-$kver.tar.bz2; then echo linux-$kver.tar.bz2 does not exist >&2 @@ -113,6 +113,11 @@ if test -f linux-$kver-$libre.patch; then exit 1 fi +if test -f linux-$kver-$libre.log; then + echo linux-$kver-$libre.log already exists >&2 + exit 1 +fi + if test -f linux-$kver-$libre.xdelta; then echo linux-$kver-$libre.xdelta already exists >&2 exit 1 @@ -173,10 +178,15 @@ echo Copying linux-$kver to linux-$kver-$libre cp linux-$kver.tar linux-$kver-$libre.tar cp -lR linux-$kver/. linux-$kver-$libre -echo Deblobbing within linux-$kver-$libre -if (cd linux-$kver-$libre && /bin/sh ../$deblob $force); then - : -else +rm -f linux-$kver-$libre.log linux-$kver-$libre.log.tmp +echo Deblobbing within linux-$kver-$libre, saving output to linux-$kver-$libre.log +# We can't just pipe deblob into tee, for then we fail to detect +# error conditions. Use file renaming to tell whether we succeeded. +if (cd linux-$kver-$libre && /bin/sh ../$deblob $force) 2>&1; then + mv linux-$kver-$libre.log.tmp linux-$kver-$libre.log +fi | tee linux-$kver-$libre.log.tmp +if test ! -f linux-$kver-$libre.log; then + mv linux-$kver-$libre.log.tmp linux-$kver-$libre.log echo $deblob failed, aborting >&2 exit 1 fi @@ -211,7 +221,7 @@ echo Wiping out extracted trees rm -rf linux-$kver orig-linux-$kver echo Creating xdelta between linux-$kver.tar and linux-$kver-$libre.tar -xdelta delta -0 linux-$kver.tar linux-$kver-$libre.tar linux-$kver-$libre.xdelta || echo error running xdelta, ignored >&2 +xdelta delta -0 linux-$kver.tar linux-$kver-$libre.tar linux-$kver-$libre.xdelta || : # xdelta returns nonzero on success echo Compressing linux-$kver-$libre.tar and linux-$kver-$libre.xdelta rm -f linux-$kver.tar