Problem with make check on OpenBSD [was: make check]

David Relson relson at osagesoftware.com
Thu May 22 15:19:33 CEST 2003


Gustaf,

I think Matthias discovered this yesterday and fixed it in cvs.  Here's his 
change.  Please let us know how it works.

David

Modified Files:
	t.frame
Log Message:
Fix 'make check' for non-Linux systems.

Index: t.frame
===================================================================
RCS file: /cvsroot/bogofilter/bogofilter/src/tests/t.frame,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- t.frame	19 May 2003 22:05:24 -0000	1.8
+++ t.frame	22 May 2003 03:18:26 -0000	1.9
@@ -99,5 +99,7 @@
      export EF_ALIGNMENT
  fi

-DIFF_BRIEF=""
-[ "`uname -s`" = "Linux" ] && DIFF_BRIEF="--brief -s"
+case `uname -s` in
+    Linux)  DIFF_BRIEF="--brief -s" ;;
+    *)      DIFF_BRIEF="" ;;
+esac






More information about the Bogofilter mailing list