From: David Lamparter Date: Thu, 19 Jul 2012 10:58:59 +0000 (+0200) Subject: build: fix isisd topology out of tree build X-Git-Tag: frr-2.0-rc1~1793 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=ee1ac2d52a6656e589ca2fb4feb3ec5fd366ecb7;p=matthieu%2Ffrr.git build: fix isisd topology out of tree build isisd got the include directory wrong on building with a separate build directory. * configure.ac: adjust ISIS_TOPOLOGY_INCLUDES Signed-off-by: David Lamparter --- diff --git a/configure.ac b/configure.ac index 0d6e6efff1..7764df7173 100755 --- a/configure.ac +++ b/configure.ac @@ -330,7 +330,7 @@ fi if test "${enable_isisd}" = "yes" && test "${enable_isis_topology}" = yes; then AC_DEFINE(TOPOLOGY_GENERATE,,Enable IS-IS topology generator code) - ISIS_TOPOLOGY_INCLUDES="-I./topology" + ISIS_TOPOLOGY_INCLUDES="-I\$(srcdir)/topology" ISIS_TOPOLOGY_DIR="topology" ISIS_TOPOLOGY_LIB="./topology/libtopology.a" fi