diff options
author | Adam Lesinski <adamlesinski@google.com> | 2016-03-09 13:11:25 -0800 |
---|---|---|
committer | Adam Lesinski <adamlesinski@google.com> | 2016-03-09 13:23:12 -0800 |
commit | 96917c25f09bb2f33e22f20cdfa4ece8f310b084 (patch) | |
tree | 3ceb11cdc8d6dfc3dd399a01e648bda0d91dea05 /tools/aapt2/Android.mk | |
parent | 0dda14c671e7c19841f963b0bc665da055738437 (diff) |
AAPT2: Fix file::mkdirs when given absolute paths
file::mkdirs would try to extract the first part of the
path '/path' which would be the empty string ''. Mkdir would
fail creating the empty string directory.
Change-Id: Ice8ba92135f145f52f3663499a2c49eebe797328
Diffstat (limited to 'tools/aapt2/Android.mk')
-rw-r--r-- | tools/aapt2/Android.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/aapt2/Android.mk b/tools/aapt2/Android.mk index 57a769221a8f..d311b3d41a70 100644 --- a/tools/aapt2/Android.mk +++ b/tools/aapt2/Android.mk @@ -90,6 +90,7 @@ testSources := \ proto/TableProtoSerializer_test.cpp \ split/TableSplitter_test.cpp \ util/BigBuffer_test.cpp \ + util/Files_test.cpp \ util/Maybe_test.cpp \ util/StringPiece_test.cpp \ util/Util_test.cpp \ |