Always prefix comparisons with x.
This commit is contained in:
parent
6af90c4379
commit
631b612564
1 changed files with 3 additions and 3 deletions
|
@ -89,7 +89,7 @@ subdirs:
|
|||
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 @@ depend: pre-depend ${SRCS}
|
|||
;; \
|
||||
esac; \
|
||||
done; \
|
||||
if [ $$error = 0 ]; then \
|
||||
if [ x"$$error" = x"0" ]; then \
|
||||
${DEPEND_OK}; \
|
||||
else \
|
||||
${DEPEND_FAILED}; \
|
||||
|
@ -161,7 +161,7 @@ ${EXT_DEPS}: subdirs
|
|||
|
||||
.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 \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue