Bug 633895 /bin/sh: syntax error at line 4: `dirs=$' unexpected in services/sync r=rnewman a=mconnor

This commit is contained in:
Ginn Chen 2011-03-01 09:29:51 +08:00
Родитель 0f9dc4462a
Коммит 17b7676dd1
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -72,8 +72,8 @@ ifndef NO_DIST_INSTALL
$(EXIT_ON_ERROR) \ $(EXIT_ON_ERROR) \
HERE=$(CURDIR); \ HERE=$(CURDIR); \
cd $(srcdir)/modules; \ cd $(srcdir)/modules; \
dirs=$$(find * -type d); \ dirs=`find * -type d`; \
files=$$(find * -type f); \ files=`find * -type f`; \
cd $$HERE; \ cd $$HERE; \
for d in $$dirs; do \ for d in $$dirs; do \
$(PYTHON) $(topsrcdir)/config/nsinstall.py -D $(FINAL_TARGET)/modules/services-sync/$$d; \ $(PYTHON) $(topsrcdir)/config/nsinstall.py -D $(FINAL_TARGET)/modules/services-sync/$$d; \