summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorBoris Nagaev <bnagaev@gmail.com>2015-12-02 23:01:34 (GMT)
committerBoris Nagaev <bnagaev@gmail.com>2015-12-02 23:01:34 (GMT)
commitd5a35d7463ed4f016a16a2a21f2c83a9f2fc743b (patch)
treea06e55827eb0195f7adc672159e505b0c7b14620 /tools
parent2a652ffb4f0bb6e1a50c9b7a704261cd94effca4 (diff)
downloadmxe-d5a35d7463ed4f016a16a2a21f2c83a9f2fc743b.zip
mxe-d5a35d7463ed4f016a16a2a21f2c83a9f2fc743b.tar.gz
mxe-d5a35d7463ed4f016a16a2a21f2c83a9f2fc743b.tar.bz2
patch-tool-mxe: do not download dependencies
Diffstat (limited to 'tools')
-rwxr-xr-xtools/patch-tool-mxe6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/patch-tool-mxe b/tools/patch-tool-mxe
index 1ba10c9..b59b094 100755
--- a/tools/patch-tool-mxe
+++ b/tools/patch-tool-mxe
@@ -59,10 +59,10 @@ function init_git {
echo "Checking for cached $pkg_file"
if [ ! -f $mxedir/pkg/$pkg_file ]; then
- make -C "$mxedir" download-$pkg
- echo "Building the mxe Makefile target 'download-$pkg' to get missing file"
+ make -C "$mxedir" download-only-$pkg
+ echo "Building the mxe Makefile target 'download-only-$pkg' to get missing file"
if [ ! $? -eq 0 ]; then
- echo "Could not build target download-$pkg - cancelling init." >&2
+ echo "Could not build target download-only-$pkg - cancelling init." >&2
exit 1
fi
fi