summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xautogen.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh
index f208f35f12b5..6c3856af8ac8 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -127,6 +127,18 @@ chomp $system;
sanity_checks ($system) unless($system eq 'Darwin');
+# If we are running in a LODE env, make sure we find the right aclocal
+# by making sure that LODE_HOME/opt/bin is in the PATH
+if (defined $ENV{LODE_HOME})
+{
+ my $lode_path = quotemeta "$ENV{LODE_HOME}/opt/bin";
+ if($ENV{PATH} !~ $lode_path)
+ {
+ $ENV{PATH}="$ENV{LODE_HOME}/opt/bin:$ENV{PATH}";
+ print STDERR "add LODE_HOME/opt/bin in PATH\n";
+ }
+}
+
my $aclocal_flags = $ENV{ACLOCAL_FLAGS};
$aclocal_flags .= " -I $src_path/m4";