bug 676856 - show package name in about:buildconfig on Android r=gavin

This commit is contained in:
Brad Lassey 2011-08-09 17:16:26 -04:00
Родитель 97fb931a8a
Коммит 527c57de83
2 изменённых файлов: 8 добавлений и 0 удалений

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

@ -62,6 +62,10 @@ ifdef MOZ_SOURCE_STAMP
DEFINES += -DSOURCE_CHANGESET="$(MOZ_SOURCE_STAMP)"
endif
ifeq (Android,$(OS_TARGET))
DEFINES += -DANDROID_PACKAGE_NAME=$(ANDROID_PACKAGE_NAME)
endif
# strip a trailing slash from the repo URL because it's not always present,
# and we want to construct a working URL in buildconfig.html
# make+shell+sed = awful

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

@ -96,5 +96,9 @@
</table>
<h2>Configure arguments</h2>
<p>@ac_configure_args@</p>
#ifdef ANDROID
<h2>Package name</h2>
<p>@ANDROID_PACKAGE_NAME@</p>
#endif
</body>
</html>