From f87b3f9347ca105ad9a80355250b7ab4973300c8 Mon Sep 17 00:00:00 2001 From: Ash Date: Tue, 18 Sep 2018 08:07:38 +1000 Subject: [PATCH] make: Fix comparisons for sh compatibility Thanks to @rw-r-r-0644 for this one --- share/wut.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/wut.mk b/share/wut.mk index 7eef587e3..c8b9675dc 100644 --- a/share/wut.mk +++ b/share/wut.mk @@ -91,7 +91,7 @@ WUT_RPLELF_SUFFIX := .elf @echo ELF2RPL $(notdir $@) $(Q)$(WUT_ELF2RPL) $(WUT_ELF2RPLFLAGS) $@$(WUT_RPLELF_SUFFIX) $@ # Unless we're told not to, delete the initial output file - $(Q)if [ "$(WUT_KEEP_RPLELF)" == "" ]; then \ + $(Q)if [ "$(WUT_KEEP_RPLELF)" = "" ]; then \ rm -f $@$(WUT_RPLELF_SUFFIX); \ fi