Coda File System

patch: remove bashism

From: Greg Troxel <gdt_at_ir.bbn.com>
Date: Wed, 29 Feb 2012 20:29:16 -0500
This is a resend of a patch I sent on 2011-03-11.  It is patch-ad in
pkgsrc.

commit message:

  Remove ==, a non-portable non-POSIX bashism.

Index: configure.ac
===================================================================
RCS file: /coda-src/coda/configure.ac,v
retrieving revision 1.27
diff -u -p -r1.27 configure.ac
--- configure.ac	10 Feb 2012 15:52:54 -0000	1.27
+++ configure.ac	1 Mar 2012 01:28:25 -0000
@@ -142,7 +142,7 @@ AC_SUBST(shortsys)
 dnl Build conditionals
 if test "$buildvcodacon" != no ; then
   test -z "${FLUID}" && AC_MSG_ERROR("Unable to find fltk-fluid")
-  test "$coda_cv_path_fltk" == none && AC_MSG_ERROR("Unable to find libfltk")
+  test "$coda_cv_path_fltk" = none && AC_MSG_ERROR("Unable to find libfltk")
 fi
 AM_CONDITIONAL(BUILD_VCODACON, [test "$buildvcodacon" != no])
 

Received on 2012-02-29 20:29:22