diff options
author | André Silva <emulatorman@hyperbola.info> | 2018-07-17 17:12:53 -0300 |
---|---|---|
committer | André Silva <emulatorman@hyperbola.info> | 2018-07-17 17:12:53 -0300 |
commit | 93cc98c9436c06e0a49aa819607e51636e289b9d (patch) | |
tree | 78d39fca9e21e80c3999b0f6c1797c1c74d3336a | |
parent | 581be022c4b64c7969126e14c27b096772fc489b (diff) | |
download | iceweasel-uxp-93cc98c9436c06e0a49aa819607e51636e289b9d.tar.gz |
Fix MOZ_APP_VERSION
-rwxr-xr-x | confvars.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/confvars.sh b/confvars.sh index 183e191..13e18aa 100755 --- a/confvars.sh +++ b/confvars.sh @@ -19,7 +19,7 @@ if test "$OS_ARCH" = "WINNT"; then MOZ_MAINTENANCE_SERVICE= fi -# For Iceweasel-UXP we want to use 52.9.0_YYYYMMDD as MOZ_APP_VERSION in release +# For Iceweasel-UXP we want to use 52.9.YYYYMMDD as MOZ_APP_VERSION in release # builds so add-on developers have something to target while maintaining # Firefox compatiblity. # To enable add "export ICEWEASEL_VERSION=1" to the .mozconfig file. @@ -27,7 +27,7 @@ fi # don't export the variable if you are in development or don't care. # When not exported we fall back the value in the version*.txt file. if test -n "$ICEWEASEL_VERSION" ; then - MOZ_APP_VERSION=52.9.0_`date --utc '+%Y%m%d'` + MOZ_APP_VERSION=52.9.`date --utc '+%Y%m%d'` MOZ_APP_VERSION_DISPLAY=`date --utc '+%Y%m%d'` else MOZ_APP_VERSION=`cat ${_topsrcdir}/$MOZ_BUILD_APP/config/version.txt` |