updated for version 7.4.255
Problem:    Configure check for smack doesn't work with all shells. (David
            Larson)
Solution:   Remove spaces in set command.
diff --git a/src/configure.in b/src/configure.in
index e978780..4b450ce 100644
--- a/src/configure.in
+++ b/src/configure.in
@@ -405,7 +405,7 @@
   AC_MSG_CHECKING(for XATTR_NAME_SMACKEXEC in linux/xattr.h)
   AC_EGREP_CPP(XATTR_NAME_SMACKEXEC, [#include <linux/xattr.h>],
 	       AC_MSG_RESULT(yes),
-	       AC_MSG_RESULT(no); enable_smack = "no")
+	       AC_MSG_RESULT(no); enable_smack="no")
 fi
 if test "$enable_smack" = "yes"; then
   AC_CHECK_LIB(attr, setxattr,
@@ -2643,7 +2643,7 @@
     AC_MSG_CHECKING(for XIMText in X11/Xlib.h)
     AC_EGREP_CPP(XIMText, [#include <X11/Xlib.h>],
 		  AC_MSG_RESULT(yes),
-		  AC_MSG_RESULT(no; xim has been disabled); enable_xim = "no")
+		  AC_MSG_RESULT(no; xim has been disabled); enable_xim="no")
   fi
   CPPFLAGS=$cppflags_save