diff options
Diffstat (limited to 'android/makevars.go')
-rw-r--r-- | android/makevars.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/android/makevars.go b/android/makevars.go index 003a9df32..374986e84 100644 --- a/android/makevars.go +++ b/android/makevars.go @@ -18,7 +18,6 @@ import ( "bytes" "fmt" "sort" - "strconv" "strings" "github.com/google/blueprint" @@ -31,7 +30,7 @@ func init() { } func androidMakeVarsProvider(ctx MakeVarsContext) { - ctx.Strict("MIN_SUPPORTED_SDK_VERSION", strconv.Itoa(ctx.Config().MinSupportedSdkVersion())) + ctx.Strict("MIN_SUPPORTED_SDK_VERSION", ctx.Config().MinSupportedSdkVersion().String()) } /////////////////////////////////////////////////////////////////////////////// |