summaryrefslogtreecommitdiff
path: root/debian/patches/fix-Make.coverity-bashisms.patch
diff options
context:
space:
mode:
authorSteve McIntyre <steve@einval.com>2021-03-23 23:38:30 +0000
committerSteve McIntyre <steve@einval.com>2021-03-23 23:38:30 +0000
commitf43e9abcc596c1b2934e7f43bddf173f74f3866c (patch)
tree29d1ed14f561f417a71e837afecc4c01221db451 /debian/patches/fix-Make.coverity-bashisms.patch
parente6b19d2db7be7f9535cc06ecb8493e1336c7b78d (diff)
downloadefi-boot-shim-f43e9abcc596c1b2934e7f43bddf173f74f3866c.tar.gz
efi-boot-shim-f43e9abcc596c1b2934e7f43bddf173f74f3866c.zip
Remove all out outstanding patches
* cast-CHAR8-string-handling.patch no longer needed * fix-Make.coverity-bashisms.patch went upstream
Diffstat (limited to 'debian/patches/fix-Make.coverity-bashisms.patch')
-rw-r--r--debian/patches/fix-Make.coverity-bashisms.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/debian/patches/fix-Make.coverity-bashisms.patch b/debian/patches/fix-Make.coverity-bashisms.patch
deleted file mode 100644
index c1cdeb96..00000000
--- a/debian/patches/fix-Make.coverity-bashisms.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-diff --git a/Make.coverity b/Make.coverity
-index 996e826e..a897aa0a 100644
---- a/Make.coverity
-+++ b/Make.coverity
-@@ -12,7 +12,7 @@ cov-int-all : clean
-
- cov-clean :
- @rm -vf $(NAME)-coverity-*.tar.*
-- @if [[ -d cov-int ]]; then rm -rf cov-int && echo "removed 'cov-int'"; fi
-+ @if [ -d cov-int ]; then rm -rf cov-int && echo "removed 'cov-int'"; fi
-
- cov-file : | $(COV_FILE)
-
-@@ -20,9 +20,9 @@ $(COV_FILE) : | cov-int
- tar caf $@ cov-int
-
- cov-upload :
-- @if [[ -n "$(COV_URL)" ]] && \
-- [[ -n "$(COV_TOKEN)" ]] && \
-- [[ -n "$(COV_EMAIL)" ]] ; \
-+ @if [ -n "$(COV_URL)" ] && \
-+ [ -n "$(COV_TOKEN)" ] && \
-+ [ -n "$(COV_EMAIL)" ] ; \
- then \
- echo curl --form token=$(COV_TOKEN) --form email="$(COV_EMAIL)" --form file=@"$(COV_FILE)" --form version=$(VERSION).1 --form description="$(COMMIT_ID)" "$(COV_URL)" ; \
- curl --form token=$(COV_TOKEN) --form email="$(COV_EMAIL)" --form file=@"$(COV_FILE)" --form version=$(VERSION).1 --form description="$(COMMIT_ID)" "$(COV_URL)" ; \