Bug 538723 run_for_effect is not portable for Bourne shell r=ted.mielczarek

This commit is contained in:
Ginn Chen 2010-03-02 13:56:46 +08:00
Родитель 171afe0464
Коммит cbade4f169
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -62,7 +62,7 @@
# MOZ_APP_VERSION and MOZ_LANGPACK_EID.
run_for_effects := $(shell if ! test -d $(DIST); then $(NSINSTALL) -D $(DIST); fi)
run_for_effects := $(shell if test ! -d $(DIST); then $(NSINSTALL) -D $(DIST); fi)
_ABS_DIST := $(shell cd $(DIST) && pwd)