summaryrefslogtreecommitdiffstats
path: root/tools/patch-tool-mxe
diff options
context:
space:
mode:
authorRyan Pavlik <rpavlik@iastate.edu>2012-05-07 17:56:06 (GMT)
committerMark Brand <mabrand@mabrand.nl>2012-06-13 16:22:33 (GMT)
commit5298075f4d4d12b6dad9b93f730dcdb233c209c9 (patch)
tree923128f2589aa3d6632def884c88f2c5c8b06ccf /tools/patch-tool-mxe
parent63917a89b3b12d68e91b9d355fc5e7687b4a9ab9 (diff)
downloadmxe-5298075f4d4d12b6dad9b93f730dcdb233c209c9.zip
mxe-5298075f4d4d12b6dad9b93f730dcdb233c209c9.tar.gz
mxe-5298075f4d4d12b6dad9b93f730dcdb233c209c9.tar.bz2
patch tool: Add useful status messages
Diffstat (limited to 'tools/patch-tool-mxe')
-rwxr-xr-xtools/patch-tool-mxe7
1 files changed, 5 insertions, 2 deletions
diff --git a/tools/patch-tool-mxe b/tools/patch-tool-mxe
index aeb9593..208655a 100755
--- a/tools/patch-tool-mxe
+++ b/tools/patch-tool-mxe
@@ -72,8 +72,10 @@ function init_git {
cd $gitsdir/$pkg_subdir && \
(git init; git add -A; git commit -m "init") > /dev/null
- echo "Tagging distribution tarball state"
+ echo "Creating 'dist' tag for distribution tarball state"
git tag dist
+
+ echo "Repository ready in $gitsdir/$pkg_subdir"
}
function export_patch {
@@ -92,7 +94,8 @@ function export_patch {
echo ''
git format-patch -p --stdout dist..HEAD | \
sed 's/^From: .*/From: MXE/g;'
- ) > $mxedir/src/$pkg-1-fixes.patch
+ ) > $mxedir/src/$pkg-1-fixes.patch && \
+ echo "Generated $mxedir/src/$pkg-1-fixes.patch"
}
function import_patch {