changeset 7024:7e3492d02821

[project @ 2007-10-14 19:28:42 by dbateman]
author dbateman
date Sun, 14 Oct 2007 19:28:42 +0000
parents 62552bb913c4
children adf164b814b3
files scripts/ChangeLog scripts/pkg/pkg.m scripts/plot/Makefile.in
diffstat 3 files changed, 12 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/ChangeLog	Sat Oct 13 16:09:15 2007 +0000
+++ b/scripts/ChangeLog	Sun Oct 14 19:28:42 2007 +0000
@@ -1,3 +1,9 @@
+2007-10-14  David Bateman  <dbateman@free.fr>
+
+	* pkg/pkg.m (pkg:configure_make): Treat case of no files to install in
+	src directory.
+	* plot/Makefile.in (SOURCES): Add fill.m.
+
 2007-10-13  David Bateman  <dbateman@free.fr>
 
 	* plot/__patch__.m: Allow multiple patches to be defined and
--- a/scripts/pkg/pkg.m	Sat Oct 13 16:09:15 2007 +0000
+++ b/scripts/pkg/pkg.m	Sun Oct 14 19:28:42 2007 +0000
@@ -1095,7 +1095,11 @@
     endif
 
     ## Split into architecture dependent and independent files
-    idx = cellfun (@(x) is_architecture_dependent (x), filenames);
+    if (isempty (filenames))
+      idx = [];
+    else
+      idx = cellfun (@(x) is_architecture_dependent (x), filenames);
+    endif
     archdependent = filenames (idx);
     archindependent = filenames (!idx);
 
--- a/scripts/plot/Makefile.in	Sat Oct 13 16:09:15 2007 +0000
+++ b/scripts/plot/Makefile.in	Sun Oct 14 19:28:42 2007 +0000
@@ -73,6 +73,7 @@
   drawnow.m \
   errorbar.m \
   figure.m \
+  fill.m \
   findobj.m \
   fplot.m \
   gca.m \