Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Makefile.ffmpeg,hdhomerun: try to fix the test condition
  • Loading branch information
perexg committed Oct 15, 2014
1 parent bce2c52 commit f70e601
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile.ffmpeg
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Makefile.hdhomerun
Expand Up @@ -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
Expand Down

0 comments on commit f70e601

Please sign in to comment.