mirror of
https://codeberg.org/kiss-community/repo
synced 2025-04-01 18:47:16 -06:00
x264: fix portability issues with ksh. Closes #297
This commit is contained in:
parent
a5548c7ea0
commit
fa80406426
@ -1,6 +1,6 @@
|
|||||||
#!/bin/sh -e
|
#!/bin/sh -e
|
||||||
|
|
||||||
patch -p1 < x264-no-bash.patch
|
patch -p1 < portability.patch
|
||||||
|
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
404e7ba61123720a7b2cc45356ace6859860ef4ce3503758465e92c1ce11995e
|
404e7ba61123720a7b2cc45356ace6859860ef4ce3503758465e92c1ce11995e
|
||||||
a78a518c3685813fdfdc8813acd48e292968892e6ff5ea60d91f5c514c35acee
|
ff0292e4cf86e8352e174091091e842c2e9ab444d8f5f292b3f1a7d11a392f41
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
diff --git a/tools/cltostr.sh b/tools/cltostr.sh
|
||||||
|
index 23b6cc7..3feaafe 100755
|
||||||
|
--- a/tools/cltostr.sh
|
||||||
|
+++ b/tools/cltostr.sh
|
||||||
|
@@ -18,7 +18,7 @@ dump() {
|
||||||
|
}
|
||||||
|
|
||||||
|
# Print MD5 hash w/o newline character to not embed the character in the array.
|
||||||
|
-hash() {
|
||||||
|
+_hash() {
|
||||||
|
# md5sum is not standard, so try different platform-specific alternatives.
|
||||||
|
{ md5sum "$1" || md5 -q "$1" || digest -a md5 "$1"; } 2>/dev/null |
|
||||||
|
cut -b -32 | tr -d '\n\r'
|
||||||
|
@@ -29,5 +29,5 @@ trap 'rm -f "$1.temp"' EXIT
|
||||||
|
sanitize | tee "$1.temp" |
|
||||||
|
dump 'x264_opencl_source' > "$1"
|
||||||
|
|
||||||
|
-hash "$1.temp" |
|
||||||
|
+_hash "$1.temp" |
|
||||||
|
dump 'x264_opencl_source_hash' >> "$1"
|
||||||
diff --git a/configure b/configure-posix
|
diff --git a/configure b/configure-posix
|
||||||
index 3cf63e0..1e1fce5 100755
|
index 3cf63e0..1e1fce5 100755
|
||||||
--- a/configure-posix
|
--- a/configure-posix
|
@ -1,2 +1,2 @@
|
|||||||
https://download.videolan.org/pub/videolan/x264/snapshots/x264-snapshot-VERSION-stable.tar.bz2
|
https://download.videolan.org/pub/videolan/x264/snapshots/x264-snapshot-VERSION-stable.tar.bz2
|
||||||
patches/x264-no-bash.patch
|
patches/portability.patch
|
||||||
|
Loading…
Reference in New Issue
Block a user