diff options
author | hasso <hasso> | 2005-03-28 15:29:07 +0000 |
---|---|---|
committer | hasso <hasso> | 2005-03-28 15:29:07 +0000 |
commit | 2b8c6f84fe15075d9bcc2a0966b6d5dbb4f7f4c2 (patch) | |
tree | 67788e4e9956882a6d8ccb94b1289f616579342c /ospf6d | |
parent | b563c7d98ba277ce29ded67fe9265428298aefec (diff) | |
download | quagga-2b8c6f84fe15075d9bcc2a0966b6d5dbb4f7f4c2.tar.bz2 quagga-2b8c6f84fe15075d9bcc2a0966b6d5dbb4f7f4c2.tar.xz |
* configure.ac, */Makefile.am: Fix previous commit. SNMP includes
must be after lib/ includes in some systems. Introduce SNMP_INCLUDES
for that.
Diffstat (limited to 'ospf6d')
-rw-r--r-- | ospf6d/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ospf6d/Makefile.am b/ospf6d/Makefile.am index cfdd93f2..ad828713 100644 --- a/ospf6d/Makefile.am +++ b/ospf6d/Makefile.am @@ -1,6 +1,6 @@ ## Process this file with automake to produce Makefile.in. -INCLUDES = @INCLUDES@ -I.. -I$(top_srcdir) -I$(top_srcdir)/lib +INCLUDES = @INCLUDES@ -I.. -I$(top_srcdir) -I$(top_srcdir)/lib @SNMP_INCLUDES@ DEFS = @DEFS@ -DSYSCONFDIR=\"$(sysconfdir)/\" INSTALL_SDATA=@INSTALL@ -m 600 |