From 871627a82328fc15b5ae39ac532101798b77b1da Mon Sep 17 00:00:00 2001 From: beat Date: Wed, 6 Jun 2012 21:53:17 +0000 Subject: - Re-add a check if Thunderbird binary exist which was accidentally removed in rev 1.57. --- Mk/bsd.gecko.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Mk/bsd.gecko.mk b/Mk/bsd.gecko.mk index 273b4016b669..88afdbc22e3e 100644 --- a/Mk/bsd.gecko.mk +++ b/Mk/bsd.gecko.mk @@ -386,8 +386,10 @@ USE_THUNDERBIRD= ${_THUNDERBIRD_DEFAULT_VERSION} .endif # Setting/finding Thunderbird version we want. +.if exists(${LOCALBASE}/bin/thunderbird) _TMP_VER!= ${LOCALBASE}/bin/thunderbird --version 2>/dev/null | ${HEAD} -1 | ${SED} -e 's/ Thunderbird \([0-9]\{1,2\}\)\.\([0-9]*\).*/\1\2/' _THUNDERBIRD_VER:= ${_TMP_VER:C/([0-9][0-9]).*/\1/} +.endif # Check if installed Thunderbird version matches the wanted one .if defined(_THUNDERBIRD_VER) -- cgit