diff options
author | Anas Nashif <anas.nashif@intel.com> | 2013-02-10 13:58:15 -0800 |
---|---|---|
committer | Anas Nashif <anas.nashif@intel.com> | 2013-04-26 15:38:07 -0700 |
commit | 44b1f20dfc5d5d7123318487a070fdfa9432cc0d (patch) | |
tree | 5580f3cf30ffd7e1ccdce19d1915fe9d40397b97 | |
parent | b262baaa887adf03b1e09bd371a69b98386d07af (diff) | |
download | libsoup-44b1f20dfc5d5d7123318487a070fdfa9432cc0d.tar.gz libsoup-44b1f20dfc5d5d7123318487a070fdfa9432cc0d.tar.bz2 libsoup-44b1f20dfc5d5d7123318487a070fdfa9432cc0d.zip |
fixed typo
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | libsoup/Makefile.am | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 18edac0a..f0c75d91 100644 --- a/configure.ac +++ b/configure.ac @@ -147,7 +147,7 @@ fi AC_SUBST(SQLITE_CFLAGS) AC_SUBST(SQLITE_LIBS) -AM_CONDITIONAL(SQLLITE_SUPPORT, [test $enable_sqllite = yes]) +AM_CONDITIONAL(SQLITE_SUPPORT, [test $enable_sqllite = yes]) dnl ********************* dnl *** GNOME support *** diff --git a/libsoup/Makefile.am b/libsoup/Makefile.am index 80af0c22..8ca48fb1 100644 --- a/libsoup/Makefile.am +++ b/libsoup/Makefile.am @@ -71,7 +71,7 @@ soup_headers = \ soup-value-utils.h \ soup-xmlrpc.h -if SQLLITE_SUPPORT +if SQLITE_SUPPORT soup_headers += \ soup-cookie-jar-sqlite.h endif |