diff options
author | paul <paul> | 2004-09-05 02:26:24 +0000 |
---|---|---|
committer | paul <paul> | 2004-09-05 02:26:24 +0000 |
commit | 0ce9c8835f01e3fbe48a657f86ec713dd13d5b7d (patch) | |
tree | cb5fa46e52b962120b1b8bedd143a1ba40db7893 | |
parent | 60119cee3f91d3abbc12ac418eea2d642b759694 (diff) | |
download | quagga-0ce9c8835f01e3fbe48a657f86ec713dd13d5b7d.tar.bz2 quagga-0ce9c8835f01e3fbe48a657f86ec713dd13d5b7d.tar.xz |
Fix aclocal m4/ include for out-of-tree builds - all src relative paths
need to be prefixed with $(top_srcdir)
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index dbc08075..dbfecc93 100644 --- a/Makefile.am +++ b/Makefile.am @@ -11,4 +11,4 @@ EXTRA_DIST = aclocal.m4 SERVICES TODO REPORTING-BUGS vtysh/Makefile.in \ tools/mrlg.cgi tools/rrcheck.pl tools/rrlookup.pl tools/zc.pl \ tools/zebra.el -ACLOCAL_AMFLAGS = -I m4 +ACLOCAL_AMFLAGS = -I $(top_srcdir)/m4 |