summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xautogen.sh7
1 files changed, 5 insertions, 2 deletions
diff --git a/autogen.sh b/autogen.sh
index 4d5037062c36..de4eb4afe5c1 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -11,6 +11,9 @@ sub clean()
print "cleaned the build tree\n";
}
+# Alloc $ACLOCAL to specify which aclocal to use
+my $aclocal = $ENV{ACLOCAL} ? $ENV{ACLOCAL} : 'aclocal';
+
# check we have various vital tools
sub sanity_checks($)
{
@@ -20,7 +23,7 @@ sub sanity_checks($)
(
'pkg-config' => "pkg-config is required to be installed",
'autoconf' => "autoconf is required",
- 'aclocal' => "aclocal is required",
+ $aclocal => "$aclocal is required",
);
for my $elem (@path) {
@@ -119,7 +122,7 @@ $aclocal_flags = "-I ./m4/mac" if (($aclocal_flags eq "") && ($system eq 'Darwin
$ENV{AUTOMAKE_EXTRA_FLAGS} = '--warnings=no-portability' if (!($system eq 'Darwin'));
-system ("aclocal $aclocal_flags") && die "Failed to run aclocal";
+system ("$aclocal $aclocal_flags") && die "Failed to run aclocal";
unlink ("configure");
system ("autoconf") && die "Failed to run autoconf";
die "failed to generate configure" if (! -x "configure");
t;ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com> 2014-10-03loplugin: cstylecastNoel Grandin Change-Id: I011a0eae37d01606d28c00f8ab3839f20bf309ce 2014-02-26Remove visual noise from sfx2Alexander Wilms Change-Id: I0f556a386ce64d154b695c2a35f808c94b9f0b7a Reviewed-on: https://gerrit.libreoffice.org/8310 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com> 2014-02-23Remove unneccessary commentsAlexander Wilms Change-Id: I939160ae72fecbe3d4a60ce755730bd4c38497fb Reviewed-on: https://gerrit.libreoffice.org/8182 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com> 2014-01-10SfxPoolItem::operator ==, != should return boolStephan Bergmann ...and SfxEnumItemInterface::HasBoolValue, too. Change-Id: Ia032e3d35a4c3b4c1efdc515ca36e466be03fc0a 2013-11-11sfx2: include <> for external includesNorbert Thiebaud Change-Id: I63de4bc034020d19abd20f301194482da9a604f4 2013-08-22convert include/sfx2/tplpitem.hxx from String to OUStringNoel Grandin Change-Id: Idcacda16e53c0abf55c59638951c5f58c0ece4aa 2012-07-06re-base on ALv2 code. Includes:Michael Meeks Patches contributed by Mathias Bauer: cws mba34issues01: #i117713#: remove superfluous assertions about field unit fallbacks http://svn.apache.org/viewvc?view=revision&revision=1172341 cws mba34issues01: #i117718#: provide filter name in case storage of medium does not allow to detect one cws mba34issues01: #i117712#: fix several resource errors introduced by IAccessible2 implementation http://svn.apache.org/viewvc?view=revision&revision=1172343 http://svn.apache.org/viewvc?view=revision&revision=1172350 cws mba34issues01: #i117708#: status indicator for inactive documents http://svn.apache.org/viewvc?view=revision&revision=1172358 cws mba34issues01: #i116025#: fix typo and add missing treatment of new parameter http://svn.apache.org/viewvc?view=revision&revision=1172359 cws mba34issues01: #i117024#: rework parameter conversion for load/save slots http://svn.apache.org/viewvc?view=revision&revision=1172360 cws mba34issues01: #i116803#: possible crash on Linux when dispatch.cxx is compiled with optimization http://svn.apache.org/viewvc?view=revision&revision=1172367 cws mba34issues01: #i114600#: fix compiler warning for name clash found on Solaris http://svn.apache.org/viewvc?view=revision&revision=1172371