summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTony Theodore <tonyt@logyst.com>2013-12-04 02:16:09 (GMT)
committerTony Theodore <tonyt@logyst.com>2013-12-04 02:16:09 (GMT)
commitdad82d24beccd2d6b4ed943b32c107b981afeaa5 (patch)
tree7bd2d7d6a2328d461797b9d4fa3ad1b75b392ff2
parentad4f5ded1e0b70a8054aee9a340b1ed59b386244 (diff)
downloadmxe-dad82d24beccd2d6b4ed943b32c107b981afeaa5.zip
mxe-dad82d24beccd2d6b4ed943b32c107b981afeaa5.tar.gz
mxe-dad82d24beccd2d6b4ed943b32c107b981afeaa5.tar.bz2
package ffmpeg: use $(SORT) variable
-rw-r--r--src/ffmpeg.mk3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ffmpeg.mk b/src/ffmpeg.mk
index 6f030f9..2eecba4 100644
--- a/src/ffmpeg.mk
+++ b/src/ffmpeg.mk
@@ -14,7 +14,8 @@ $(PKG)_DEPS := gcc bzip2 lame libass libnut libvpx opencore-amr opus sdl spe
define $(PKG)_UPDATE
$(WGET) -q -O- 'http://www.ffmpeg.org/download.html' | \
$(SED) -n 's,.*ffmpeg-\([0-9][^>]*\)\.tar.*,\1,p' | \
- grep 1.2.* | sort -Vr | \
+ grep 1.2.* | \
+ $(SORT) -Vr | \
head -1
endef