configure.ac | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) New commits: commit 181d0a163f8c8f744077021eb550f0e6304fb4da Author: Petr Mladek <pmla...@suse.cz> Date: Thu Aug 29 14:50:58 2013 +0200
Allow to set EXTRA_BUILDID also via environment variable (fdo#58034) This is much easier with tinderboxed that work with static autogen.input Change-Id: Ifb0b7884bbad14a286023b3dbd7d1d2a12f36787 Reviewed-on: https://gerrit.libreoffice.org/5679 Reviewed-by: LuboÅ¡ LuÅák <l.lu...@suse.cz> Tested-by: LuboÅ¡ LuÅák <l.lu...@suse.cz> diff --git a/configure.ac b/configure.ac index 1d5acd2..059b3e8 100644 --- a/configure.ac +++ b/configure.ac @@ -11477,10 +11477,12 @@ AC_SUBST(PROGRESSTEXTCOLOR) AC_SUBST(PROGRESSTEXTBASELINE) -EXTRA_BUILDID= AC_MSG_CHECKING([for extra build ID]) if test -n "$with_extra_buildid" -a "$with_extra_buildid" != "yes" ; then EXTRA_BUILDID="$with_extra_buildid" +fi +# in tinderboxes, it is easier to set EXTRA_BUILDID via the environment variable instead of configure switch +if test -n "$EXTRA_BUILDID" ; then AC_MSG_RESULT([$EXTRA_BUILDID]) else AC_MSG_RESULT([not set])
_______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits