aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@frugalware.org>2008-06-18 19:13:29 +0200
committerMiklos Vajna <vmiklos@frugalware.org>2008-06-18 19:13:29 +0200
commiteb4b91c99307eca83c8b11c5af8bc00c2ca5c64d (patch)
tree4365ef77bb6250105556b35a350399d760c978d7
parent6344674a7d160c8fccdc811bda9f4ae26c90200d (diff)
configure: fix "./configure: line 2824: test: too many arguments"
-rw-r--r--skype/configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/skype/configure.ac b/skype/configure.ac
index e169ad69..467f3149 100644
--- a/skype/configure.ac
+++ b/skype/configure.ac
@@ -4,7 +4,7 @@ AC_PROG_INSTALL
AC_ARG_ENABLE([debug], AS_HELP_STRING([--enable-debug], [Enable debug support (default: disabled)]), debug=yes)
AC_MSG_CHECKING(for debug mode request)
-if test x$debug = xyes ; then
+if test "x$debug" = "xyes" ; then
CFLAGS="-g -Wall -Werror"
AC_MSG_RESULT(yes)
else