
--- ChangeLog | 4 ++++ configure.ac | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 9f231ff..68cbe4f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2010-04-09 Roland Levillain <roland@lrde.epita.fr> + * configure.ac: Protect variables with double quotes. + +2010-04-09 Roland Levillain <roland@lrde.epita.fr> + Improve Swilena's configuration. * m4/with-swilena.m4: Remove file. diff --git a/configure.ac b/configure.ac index 7e99431..151a4b2 100644 --- a/configure.ac +++ b/configure.ac @@ -173,7 +173,7 @@ OLN_WITH_LIB([TESSERACT], [tesseract/baseapi.h], [tesseract_full], [tesseract], AC_ARG_ENABLE([trimesh], [AS_HELP_STRING([--enable-trimesh], [build the (bundled) trimesh2 library])]) -AM_CONDITIONAL([ENABLE_TRIMESH], [test x$enable_trimesh = xyes]) +AM_CONDITIONAL([ENABLE_TRIMESH], [test "x$enable_trimesh" = xyes]) AC_CONFIG_SUBDIRS([external/trimesh]) ## --------- ## @@ -226,7 +226,7 @@ dnl<<lrde ## Scribo. ## ## -------- ## -AM_CONDITIONAL([ENABLE_SCRIBO], [test x$enable_scribo = xyes]) +AM_CONDITIONAL([ENABLE_SCRIBO], [test "x$enable_scribo" = xyes]) AC_CONFIG_FILES([ scribo/Makefile -- 1.5.6.5