[SCM] Gerris Flow Solver branch, upstream, updated. b3aa46814a06c9cb2912790b23916ffb44f1f203

Stephane Popinet popinet at users.sf.net
Fri May 15 02:53:17 UTC 2009


The following commit has been merged in the upstream branch:
commit f259052baf54b005fcec6c31eff7e95d213cd2d6
Author: Stephane Popinet <popinet at users.sf.net>
Date:   Wed Jul 19 10:18:59 2006 +1000

    Configure was not working properly with empty "modules" directory
    
    This was a problem only for systems not supporting dynamic modules.
    
    darcs-hash:20060719001859-d4795-a4871563fd911152b36c9ab53cd7923054f5bc26.gz

diff --git a/configure.in b/configure.in
index 1d0336c..694aad8 100644
--- a/configure.in
+++ b/configure.in
@@ -382,7 +382,7 @@ __EOF
 
 __EOF
 	if test "$have_gmodule" = "no"; then
-	  for file in modules/*.mod; do
+	  for file in `ls modules/*.mod`; do
 		name=`basename $file .mod`
 		echo "void gfs_init_$name (void);" >> src/modules.h
 		echo "gfs_init_$name ();" >> src/modules.c
@@ -395,7 +395,7 @@ __EOF
 dnl export MODULES for src/Makefile.am
 MODULES=""
 if test "$have_gmodule" = "no"; then
-  for file in modules/*.mod; do
+  for file in `ls modules/*.mod`; do
 	name=`basename $file .mod`
 	MODULES=" $MODULES ../modules/$name.o"
   done	

-- 
Gerris Flow Solver



More information about the debian-science-commits mailing list