Merge pull request #49 from jpoimboe/show-changed-functions

kpatch-build: show changed functions
This commit is contained in:
Seth Jennings 2014-03-10 11:24:53 -05:00
commit abbb12d065

View File

@ -172,7 +172,8 @@ cd "$TEMPDIR"
mkdir output
for i in $FILES; do
mkdir -p "output/$(dirname $i)"
"$TOOLSDIR"/create-diff-object "orig/$i" "patched/$i" "output/$i" >> "$LOGFILE" 2>&1 || die
"$TOOLSDIR"/create-diff-object "orig/$i" "patched/$i" "output/$i" 2>&1 |tee -a "$LOGFILE"
[[ "${PIPESTATUS[0]}" -eq 0 ]] || die
done
echo "Building patch module: kpatch-$PATCHNAME.ko"