Bug 771940 - '-bin' suffix no longer present on Linux and is no longer needed by app update tests. r=bbondy

This commit is contained in:
Robert Strong 2014-11-18 14:04:21 -08:00
Родитель 22e076e726
Коммит ec2cca3b4a
1 изменённых файлов: 1 добавлений и 6 удалений

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

@ -15,16 +15,11 @@ const MOZ_APP_VENDOR = "";
// MOZ_APP_BASENAME is not optional for tests.
const MOZ_APP_BASENAME = "@MOZ_APP_BASENAME@";
const APP_BIN_SUFFIX = "@BIN_SUFFIX@";
const APP_INFO_NAME = "XPCShell";
const APP_INFO_VENDOR = "Mozilla";
#ifdef XP_UNIX
const APP_BIN_SUFFIX = "-bin";
#else
const APP_BIN_SUFFIX = "@BIN_SUFFIX@";
#endif
#ifdef XP_WIN
const IS_WIN = true;
#else