diff options
author | Seonah Moon <seonah1.moon@samsung.com> | 2016-06-08 11:27:32 +0900 |
---|---|---|
committer | Seonah Moon <seonah1.moon@samsung.com> | 2016-06-08 11:27:39 +0900 |
commit | 29c36a44017329eb1eca3727aee7cbbbd1184b60 (patch) | |
tree | affea641d21f6419661da789df61db78a5e496fb | |
parent | d419e80212d7f81ea67c2cc8884157ea4f30ba4a (diff) | |
download | libsoup-29c36a44017329eb1eca3727aee7cbbbd1184b60.tar.gz libsoup-29c36a44017329eb1eca3727aee7cbbbd1184b60.tar.bz2 libsoup-29c36a44017329eb1eca3727aee7cbbbd1184b60.zip |
fix typo error about TIZEN_TV_NO_CACHE_ABOUT_VIDEO_AND_AUDIO.
AM_CONDITIONAL() is used to conditional check in make file.
but TIZEN_TV_NO_CACHE_ABOUT_VIDEO_AND_AUDIO is only used on source file.
so it has no problem in libsoup feature working.
Change-Id: I1aa759f348808e766ca0b93ff1753bd2967d63a0
Signed-off-by: Minho Im <minho.im@samsung.com>
-rwxr-xr-x | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 6a448c23..125c0d71 100755 --- a/configure.ac +++ b/configure.ac @@ -320,7 +320,7 @@ if test $enable_tizen_tv_no_cache_about_video_and_audio != no;then fi AC_MSG_RESULT($enable_tizen_tv_no_cache_about_video_and_audio) -AM_CONDITIONAL(TIZEN_TV_SOUP_CACHE_CLEAN_LEAKED_RESOURCES, [test $enable_tizen_soup_cache_clean_leaked_resources = yes]) +AM_CONDITIONAL(TIZEN_TV_NO_CACHE_ABOUT_VIDEO_AND_AUDIO, [test $enable_tizen_tv_no_cache_about_video_and_audio = yes]) dnl ************************* dnl *** Tizen use expanded response block *** |