Skip to content

Commit

Permalink
make: Fix comparisons for sh compatibility
Browse files Browse the repository at this point in the history
Thanks to @rw-r-r-0644 for this one
  • Loading branch information
ashquarky authored and exjam committed Nov 7, 2018
1 parent e950c6b commit f87b3f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion share/wut.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit f87b3f9

Please sign in to comment.