# HG changeset patch # User William Pitcock # Date 1190660258 18000 # Node ID 9082ea1df2b981c4433ce1aede10318efd0f64a8 # Parent 15e7d3473974b10778f1c2e4690b3c122814933a# Parent 256f65a37e1518d7e06f9f6977f9275a3c408dfb Automated merge with ssh://hg.atheme.org//hg/audacious-plugins diff -r 15e7d3473974 -r 9082ea1df2b9 buildsys.mk.in --- a/buildsys.mk.in Mon Sep 24 13:57:28 2007 -0500 +++ b/buildsys.mk.in Mon Sep 24 13:57:38 2007 -0500 @@ -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 \