diff options
Diffstat (limited to 'Android.common.mk')
-rw-r--r-- | Android.common.mk | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/Android.common.mk b/Android.common.mk index 4dce2e3d3..7f2790ce4 100644 --- a/Android.common.mk +++ b/Android.common.mk @@ -13,7 +13,18 @@ add_plugin = $(if $(call plugin_enabled,$(1)), \ ) \ ) \ ) +add_plugin_subdirs = $(if $(call plugin_enabled,$(1)), \ + $(patsubst $(LOCAL_PATH)/%,%, \ + $(wildcard \ + $(subst %,$(subst -,_,$(strip $(1))), \ + $(addprefix $(LOCAL_PATH)/plugins/%/,$(addsuffix /*.c, \ + $(strip $(2)) \ + )) \ + ) \ + ) \ + ) \ + ) # strongSwan version, replaced by top Makefile -strongswan_VERSION := "5.0.4" +strongswan_VERSION := "5.1.0" |