From 17b7676dd1bd0a9471f85e0790cec99de577ddc4 Mon Sep 17 00:00:00 2001 From: Ginn Chen Date: Tue, 1 Mar 2011 09:29:51 +0800 Subject: [PATCH] Bug 633895 /bin/sh: syntax error at line 4: `dirs=$' unexpected in services/sync r=rnewman a=mconnor --- services/sync/Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/sync/Makefile.in b/services/sync/Makefile.in index 3992555ca78..53eba58e1b6 100644 --- a/services/sync/Makefile.in +++ b/services/sync/Makefile.in @@ -72,8 +72,8 @@ ifndef NO_DIST_INSTALL $(EXIT_ON_ERROR) \ HERE=$(CURDIR); \ cd $(srcdir)/modules; \ - dirs=$$(find * -type d); \ - files=$$(find * -type f); \ + dirs=`find * -type d`; \ + files=`find * -type f`; \ cd $$HERE; \ for d in $$dirs; do \ $(PYTHON) $(topsrcdir)/config/nsinstall.py -D $(FINAL_TARGET)/modules/services-sync/$$d; \