FACTOR: Use consistent indexing when displaying matrices.
[pspp] / tests / atlocal.in
index 29886a0cd22508023c75f272951961e945241787..f011d0849b59671a5770d52af50bcd09010c7669 100644 (file)
@@ -36,8 +36,19 @@ export CHARSETALIASDIR
 GZIP=
 export GZIP
 
+WINEPREFIX=$HOME/.wine    # Work around the following kludge to keep wine happy
+export WINEPREFIX
+
+
 HOME=/nonexistent              # Kluge to make PSPP ignore $HOME/.pspprc.
 export HOME
 
 # Avoids error messages during tests if $TERM is set to an unknown terminal.
 TERM=; unset TERM
+
+pspp_diff=`which diff`
+if test X"$RUNNER" = Xwine; then
+    diff () {
+        $pspp_diff -w  "$@"
+    }
+fi