Mercurial > audlegacy-plugins
changeset 1831:5665b04a6cfd
Always prefix comparisons with x.
author | Jonathan Schleifer <js@h3c.de> |
---|---|
date | Mon, 24 Sep 2007 20:47:25 +0200 |
parents | 82d4dc4978fe |
children | 256f65a37e15 |
files | buildsys.mk.in |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/buildsys.mk.in Mon Sep 24 20:20:56 2007 +0200 +++ b/buildsys.mk.in Mon Sep 24 20:47:25 2007 +0200 @@ -89,7 +89,7 @@ depend: pre-depend ${SRCS} regen=0; \ for i in ${SRCS}; do [ $$i -nt .deps ] && regen=1; done; \ - if [ $$regen = 1 ]; then \ + if [ x"$$regen" = x"1" ]; then \ error=0; \ ${DEPEND_STATUS}; \ rm -f .deps; \ @@ -100,7 +100,7 @@ ;; \ esac; \ done; \ - if [ $$error = 0 ]; then \ + if [ x"$$error" = x"0" ]; then \ ${DEPEND_OK}; \ else \ ${DEPEND_FAILED}; \ @@ -161,7 +161,7 @@ .d.o: ${COMPILE_STATUS} - if test x"$(basename ${DC})" = x"dmd"; then \ + if [ x"$(basename ${DC})" = x"dmd" ]; then \ if ${DC} ${DFLAGS} -c -of$@ $<; then \ ${COMPILE_OK}; \ else \