view test/@Dork/gack.m @ 12247:2d85734b7dd4 release-3-4-x

Let pkg.m export environment variables MKOCTFILE, OCTAVE_CONFIG and OCTAVE. For configure, set all of these, for make, all except OCTAVE. They contain the full path of the respective programs of the correct version.
author Olaf Till <olaf.till@uni-jena.de>
date Wed, 26 Jan 2011 15:44:51 -0500
parents f9ab19428cd8
children
line wrap: on
line source

function [ out ] = gack( in, val )

  if (nargin==1) 
    out = in.gack;
  else
    in.gack = val;
    out = in;
  end
        
end