From f70e601c7a3026a9e4b3d9b326084e1d3a6a6dc4 Mon Sep 17 00:00:00 2001 From: Jaroslav Kysela Date: Wed, 15 Oct 2014 12:33:04 +0200 Subject: [PATCH] Makefile.ffmpeg,hdhomerun: try to fix the test condition --- Makefile.ffmpeg | 2 +- Makefile.hdhomerun | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.ffmpeg b/Makefile.ffmpeg index 9a05196a..0decb7f4 100644 --- a/Makefile.ffmpeg +++ b/Makefile.ffmpeg @@ -32,7 +32,7 @@ define DOWNLOAD @{ \ sum=$$(sha1sum $(2) | cut -d ' ' -f 1); \ printf "SHA1SUM test '$${sum}' == '$(3)': "; \ - test "y$${sum}" == "y$(3)"; \ + test "y$${sum}" = "y$(3)"; \ } @echo "OK" endef diff --git a/Makefile.hdhomerun b/Makefile.hdhomerun index 367616d9..094a3757 100644 --- a/Makefile.hdhomerun +++ b/Makefile.hdhomerun @@ -32,7 +32,7 @@ define DOWNLOAD @{ \ sum=$$(sha1sum $(2) | cut -d ' ' -f 1); \ printf "SHA1SUM test '$${sum}' == '$(3)': "; \ - test "y$${sum}" == "y$(3)"; \ + test "y$${sum}" = "y$(3)"; \ } @echo "OK" endef