aboutsummaryrefslogtreecommitdiff
path: root/tools/buildsteps
diff options
context:
space:
mode:
authormontellese <montellese@kodi.tv>2017-07-16 19:01:16 +0200
committermontellese <montellese@kodi.tv>2017-07-17 07:49:24 +0200
commit84da2f2782a19e795c3a2fc6e5377a35f237c5d1 (patch)
tree3a207751ff76e0789c359bd8526414c5abfb0109 /tools/buildsteps
parent1d2a3026231136f1479a4cb780abcd81a56f3ad3 (diff)
[buildsteps] windows: unify output of make-mingwlibs.bat
Diffstat (limited to 'tools/buildsteps')
-rw-r--r--tools/buildsteps/windows/buildhelpers.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/buildsteps/windows/buildhelpers.sh b/tools/buildsteps/windows/buildhelpers.sh
index d2ff9f7871..c3ccb19e9f 100644
--- a/tools/buildsteps/windows/buildhelpers.sh
+++ b/tools/buildsteps/windows/buildhelpers.sh
@@ -117,11 +117,11 @@ do_clean() {
do_download() {
if [ ! -d $LIBNAME ]; then
if [ ! -f /downloads/$ARCHIVE ]; then
- do_print_status "$ARCHIVE" "$orange_color" "Downloading"
+ do_print_status "$LIBNAME-$VERSION" "$orange_color" "Downloading"
do_wget $BASE_URL/$VERSION.tar.gz $ARCHIVE
fi
- do_print_status "$ARCHIVE" "$blue_color" "Extracting"
+ do_print_status "$LIBNAME-$VERSION" "$blue_color" "Extracting"
mkdir $LIBNAME && cd $LIBNAME
tar -xaf /downloads/$ARCHIVE --strip 1
else