summaryrefslogtreecommitdiffstats
path: root/TOOLS
diff options
context:
space:
mode:
authorJames Ross-Gowan <rossymiles@gmail.com>2015-11-04 20:54:44 +1100
committerwm4 <wm4@nowhere>2015-11-04 21:48:27 +0100
commita9833a71ce335e7f1b93f3f29f1c2044700a2586 (patch)
tree05faa58d66520b838d2ea6ec15df55cc509f0466 /TOOLS
parent350d902799cef5858844fa8661b90c37ca743c40 (diff)
downloadmpv-a9833a71ce335e7f1b93f3f29f1c2044700a2586.tar.bz2
mpv-a9833a71ce335e7f1b93f3f29f1c2044700a2586.tar.xz
TOOLS/gen-x11-icon.sh: fix for recent ImageMagick
Apparently ImageMagick no longer appends a newline to the format. This also sets the execute bit on the script.
Diffstat (limited to 'TOOLS')
-rwxr-xr-x[-rw-r--r--]TOOLS/gen-x11-icon.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/TOOLS/gen-x11-icon.sh b/TOOLS/gen-x11-icon.sh
index 550e9c354d..34823aa710 100644..100755
--- a/TOOLS/gen-x11-icon.sh
+++ b/TOOLS/gen-x11-icon.sh
@@ -5,7 +5,7 @@
conv() {
echo
- identify -format "icon: %w %h" "$1"
+ echo `identify -format "icon: %w %h" "$1"`
convert "$1" -depth 8 rgba:-
}