diff options
author | Tony Theodore <tonyt@logyst.com> | 2017-08-11 02:38:57 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-11 02:38:57 (GMT) |
commit | 8772da6210c80771e5564c652524244ff30dd5ee (patch) | |
tree | b082aebb22d19d526caccfccbc6aceb85416774f /src | |
parent | 54f541282a19dbceb770ae85d62ff72d13c1bedc (diff) | |
parent | 2845c33e839ad1269d6cb402b638a2c8fb14b346 (diff) | |
download | mxe-8772da6210c80771e5564c652524244ff30dd5ee.zip mxe-8772da6210c80771e5564c652524244ff30dd5ee.tar.gz mxe-8772da6210c80771e5564c652524244ff30dd5ee.tar.bz2 |
Merge pull request #1875 from darealshinji/patch-1
x264: use $(SORT)
Diffstat (limited to 'src')
-rw-r--r-- | src/x264.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/x264.mk b/src/x264.mk index 273a8ac..e223220 100644 --- a/src/x264.mk +++ b/src/x264.mk @@ -13,7 +13,7 @@ $(PKG)_DEPS := gcc liblsmash yasm define $(PKG)_UPDATE $(WGET) -q -O- 'https://git.videolan.org/?p=x264.git;a=shortlog' | \ $(SED) -n 's,.*\([0-9]\{4\}\)-\([0-9]\{2\}\)-\([0-9]\{2\}\).*,\1\2\3-2245,p' | \ - sort | \ + $(SORT) | \ tail -1 endef |