Fix incompatibility with Gradle plugin on Windows.

When run on Windows, the shell does not handle the argument quoting
and this is seen by gradle as `'-DVERSION="1.3.1"'` rather than as
`-DVERSION="1.3.1"`, which gradle wrongly interprets as a source file.
This commit is contained in:
Dan Albert 2018-10-08 11:44:09 -07:00
parent 75d782181e
commit 0dfa1e9bf2
1 changed files with 1 additions and 1 deletions

View File

@ -332,7 +332,7 @@ include $(BUILD_STATIC_LIBRARY)
include $(CLEAR_VARS)
LOCAL_CPPFLAGS := -frtti
LOCAL_CFLAGS += '-DVERSION="1.3.1"' -DFLAC__NO_MD5 -DFLAC__INTEGER_ONLY_LIBRARY -DFLAC__NO_ASM
LOCAL_CFLAGS += -DVERSION="1.3.1" -DFLAC__NO_MD5 -DFLAC__INTEGER_ONLY_LIBRARY -DFLAC__NO_ASM
LOCAL_CFLAGS += -D_REENTRANT -DPIC -DU_COMMON_IMPLEMENTATION -fPIC -DHAVE_SYS_PARAM_H
LOCAL_CFLAGS += -O3 -funroll-loops -finline-functions
LOCAL_LDLIBS := -lz -lm