# HG changeset patch # User Jaroslav Hajek # Date 1219069502 -7200 # Node ID 2b3beb8f3d0fc96a5bde2dbfb1da435259eadd98 # Parent 2fd4a5ef6b593a531f248d25341e7e25d4d979e3 avoid problematic subfunction call in an anonymous function diff --git a/scripts/ChangeLog b/scripts/ChangeLog --- a/scripts/ChangeLog +++ b/scripts/ChangeLog @@ -1,3 +1,8 @@ +2008-08-18 Jaroslav Hajek + + * pkg/pkg.m (configure_make): Pass handle to is_architecture_dependent + directly. + 2008-08-08 John W. Eaton * general/Makefile.in (SOURCES): Add cellidx.m to the list. diff --git a/scripts/pkg/pkg.m b/scripts/pkg/pkg.m --- a/scripts/pkg/pkg.m +++ b/scripts/pkg/pkg.m @@ -1302,7 +1302,7 @@ if (isempty (filenames)) idx = []; else - idx = cellfun (@(x) is_architecture_dependent (x), filenames); + idx = cellfun (@is_architecture_dependent, filenames); endif archdependent = filenames (idx); archindependent = filenames (!idx);