Added quotes in two AM_CONDITIONAL lines to avoid complaints of "test: too

2006-05-17  Kevin Cozens  <kcozens@cvs.gnome.org>

	* configure.in: Added quotes in two AM_CONDITIONAL lines to avoid
	complaints of "test: too many arguments" when running ./configure.
This commit is contained in:
Kevin Cozens 2006-05-17 23:27:54 +00:00 committed by Kevin Cozens
parent f42487cfc8
commit 160f04c434
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2006-05-17 Kevin Cozens <kcozens@cvs.gnome.org>
* configure.in: Added quotes in two AM_CONDITIONAL lines to avoid
complaints of "test: too many arguments" when running ./configure.
2006-05-18 Michael Natterer <mitch@gimp.org>
* app/tools/gimp-tools.c (gimp_tools_init): move the align tool

View file

@ -1160,7 +1160,7 @@ else
have_gtkhtml2="no (GtkHtml2 support disabled)"
fi
AM_CONDITIONAL(BUILD_HELPBROWSER, test x$have_gtkhtml2 = xyes)
AM_CONDITIONAL(BUILD_HELPBROWSER, test "x$have_gtkhtml2" = xyes)
###################
@ -1274,7 +1274,7 @@ if test "x$with_gnomeprint" != xno; then
have_gnomeprint="no (libgnomeprintui not found!)")
fi
AM_CONDITIONAL(HAVE_GNOMEPRINT, test x$have_gnomeprint = xyes)
AM_CONDITIONAL(HAVE_GNOMEPRINT, test "x$have_gnomeprint" = xyes)
if test "x$have_gnomeprint" = xyes; then
GNOMEPRINT='gnomeprint$(EXEEXT)'