aboutsummaryrefslogtreecommitdiff
path: root/contrib/wpa/wpadebug/build.xml
diff options
context:
space:
mode:
authorCy Schubert <cy@FreeBSD.org>2021-04-17 14:21:12 +0000
committerCy Schubert <cy@FreeBSD.org>2021-04-17 14:21:12 +0000
commitb51f459a2098622c31ed54f5c1bf0e03efce403b (patch)
treeea87030b875d04b71813a8c6a062dd6f6c9e276b /contrib/wpa/wpadebug/build.xml
parent13c4641188d4f012644c39c34499d96a5bbe50af (diff)
parentefec8223892b3e677acb46eae84ec3534989971f (diff)
downloadsrc-b51f459a2098622c31ed54f5c1bf0e03efce403b.tar.gz
src-b51f459a2098622c31ed54f5c1bf0e03efce403b.zip
wpa: Import wpa_supplicant/hostapd commit f91680c15
This is the April update to vendor/wpa committed upstream 2021/04/07. This is MFV efec8223892b3e677acb46eae84ec3534989971f. Suggested by: philip Reviewed by: philip MFC after: 2 months Differential Revision: https://reviews.freebsd.org/D29744
Diffstat (limited to 'contrib/wpa/wpadebug/build.xml')
-rw-r--r--contrib/wpa/wpadebug/build.xml17
1 files changed, 17 insertions, 0 deletions
diff --git a/contrib/wpa/wpadebug/build.xml b/contrib/wpa/wpadebug/build.xml
new file mode 100644
index 000000000000..5301e69bcc7f
--- /dev/null
+++ b/contrib/wpa/wpadebug/build.xml
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project name="wpadebug" default="help">
+ <property file="local.properties" />
+ <property file="ant.properties" />
+ <property environment="env" />
+ <condition property="sdk.dir" value="${env.ANDROID_HOME}">
+ <isset property="env.ANDROID_HOME" />
+ </condition>
+ <loadproperties srcFile="project.properties" />
+ <fail
+ message="sdk.dir is missing. Make sure to generate local.properties using 'android update project' or to inject it through the ANDROID_HOME environment variable."
+ unless="sdk.dir"
+ />
+ <import file="custom_rules.xml" optional="true" />
+ <!-- version-tag: 1 -->
+ <import file="${sdk.dir}/tools/ant/build.xml" />
+</project>