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
Родитель dbdf1c3839
Коммит 948fbc6c61
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -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; \