Bug 802254 - Add quotes around XPI_ROOT_APPID which can contain {}. r=glandium

This commit is contained in:
Jim Mathies 2013-02-07 10:22:11 -06:00
Родитель d6ffd91c2c
Коммит 0ccf1514c7
2 изменённых файлов: 8 добавлений и 4 удалений

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

@ -1443,10 +1443,12 @@ ifneq (,$(wildcard $(JAR_MANIFEST)))
ifndef NO_DIST_INSTALL
ifdef XPI_NAME
# For langpack packaging we may specify that an application
ifdef XPI_ROOT_APPID
# For add-on packaging we may specify that an application
# sub-dir should be added to the root chrome manifest with
# a specific application id.
MAKE_JARS_FLAGS += $(addprefix --root-manifest-entry-appid=,$(XPI_ROOT_APPID))
MAKE_JARS_FLAGS += --root-manifest-entry-appid="$(XPI_ROOT_APPID)"
endif
# if DIST_SUBDIR is defined but XPI_ROOT_APPID is not there's
# no way langpacks will get packaged right, so error out.

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

@ -1443,10 +1443,12 @@ ifneq (,$(wildcard $(JAR_MANIFEST)))
ifndef NO_DIST_INSTALL
ifdef XPI_NAME
# For langpack packaging we may specify that an application
ifdef XPI_ROOT_APPID
# For add-on packaging we may specify that an application
# sub-dir should be added to the root chrome manifest with
# a specific application id.
MAKE_JARS_FLAGS += $(addprefix --root-manifest-entry-appid=,$(XPI_ROOT_APPID))
MAKE_JARS_FLAGS += --root-manifest-entry-appid="$(XPI_ROOT_APPID)"
endif
# if DIST_SUBDIR is defined but XPI_ROOT_APPID is not there's
# no way langpacks will get packaged right, so error out.