Skip to content
Snippets Groups Projects
Commit b118e77f authored by Markus Blatt's avatar Markus Blatt
Browse files

[autotools,bugfix] Adds share/dune/aclocal to the include path of autogen.

Previously aclocal did not find the DUNE macros when they were installed to
the new location. This patch fixes this by adding the path to this list of
include paths if it is available.
parent aeca0428
Branches
Tags
No related merge requests found
......@@ -68,6 +68,9 @@ for OPT in "$@"; do
echo "Found am directory $OPT/am"
am_dir="$OPT/am"
fi
if test -d "$OPT/share/dune/aclocal"; then
ACLOCAL_FLAGS="$ACLOCAL_FLAGS -I $OPT/share/dune/aclocal"
fi
if test -d "$OPT/share/aclocal"; then
ACLOCAL_FLAGS="$ACLOCAL_FLAGS -I $OPT/share/aclocal"
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment