diff options
author | Steve Kondik <steve@cyngn.com> | 2016-09-23 10:09:51 -0700 |
---|---|---|
committer | Steve Kondik <steve@cyngn.com> | 2016-09-25 22:13:54 -0700 |
commit | 8b1e493df0ebad8ba6015a2bdae794fe04ffa982 (patch) | |
tree | 767a23e9d608ffc4df2b761540fafc8ea54a2cc7 /extensions/ebt_ip6.c | |
parent | d675c8a0972c9541c62c92cbfea24eabd75d1ff2 (diff) | |
download | android_external_ebtables-cm-14.1.tar.gz android_external_ebtables-cm-14.1.tar.bz2 android_external_ebtables-cm-14.1.zip |
* There is no need to create 20 shared libraries on an Android
build. Convert to a standalone build to eliminate this noise.
* Additionally, the scriptage in the Android makefile causes
Ninja to regenerate it's configuration for every build. Fix it.
* These files can be generated by the standard makefile as part
of the "static" target.
Change-Id: I1de9f93caf563c10f49c72a884b4c96aaf5335e0
Diffstat (limited to 'extensions/ebt_ip6.c')
-rw-r--r-- | extensions/ebt_ip6.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/ebt_ip6.c b/extensions/ebt_ip6.c index 0465e77..7e65d76 100644 --- a/extensions/ebt_ip6.c +++ b/extensions/ebt_ip6.c @@ -556,7 +556,7 @@ static struct ebt_u_match ip6_match = .extra_ops = opts, }; -void _init(void) +void _ip6_init(void) { ebt_register_match(&ip6_match); } |