diff options
author | Micael Karlberg <[email protected]> | 2013-05-21 11:47:32 +0200 |
---|---|---|
committer | Micael Karlberg <[email protected]> | 2013-05-21 11:47:32 +0200 |
commit | 3cac8c978bf944e532c91866a219fa4f86310f4a (patch) | |
tree | 6146037f06d5004ab0be79698bef9f54cad7300e /lib | |
parent | 4c91ed638f30c4ef0bd97d5aa7252020814bc7d4 (diff) | |
download | otp-3cac8c978bf944e532c91866a219fa4f86310f4a.tar.gz otp-3cac8c978bf944e532c91866a219fa4f86310f4a.tar.bz2 otp-3cac8c978bf944e532c91866a219fa4f86310f4a.zip |
[snmp/agent] Make sure main api module is compiled first
The main snmp agent api module contains some basic type defs
and therefor it must be compiled first.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/snmp/src/agent/modules.mk | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/snmp/src/agent/modules.mk b/lib/snmp/src/agent/modules.mk index e03f60120a..da9f6d6b4c 100644 --- a/lib/snmp/src/agent/modules.mk +++ b/lib/snmp/src/agent/modules.mk @@ -2,7 +2,7 @@ # %CopyrightBegin% # -# Copyright Ericsson AB 2004-2009. All Rights Reserved. +# Copyright Ericsson AB 2004-2013. All Rights Reserved. # # The contents of this file are subject to the Erlang Public License, # Version 1.1, (the "License"); you may not use this file except in @@ -28,10 +28,12 @@ BEHAVIOUR_MODULES = \ snmpa_notification_filter \ snmpa_set_mechanism +# snmpa is "plain" interface module but also defines some agent specific types +# and therefor must be compiled before the modules that use them... # snmpa_mib_data_ttln MODULES = \ - $(BEHAVIOUR_MODULES) \ snmpa \ + $(BEHAVIOUR_MODULES) \ snmpa_acm \ snmpa_agent \ snmpa_agent_sup \ |