[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

gEDA-cvs: CVS update: autogen.sh



  User: danmc   
  Date: 05/02/20 22:58:34

  Modified:    .        autogen.sh
  Log:
  avoid using the '-path' primary to find(1) as it's an extension to 
  
  posix.2 and is not supported on some operating systems such as
  
  solaris.  Now we can autogen.sh on solaris 9.
  
  
  
  
  Revision  Changes    Path
  1.2       +1 -1      eda/geda/devel/examples/autogen.sh
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: autogen.sh
  ===================================================================
  RCS file: /home/cvspsrv/cvsroot/eda/geda/devel/examples/autogen.sh,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- autogen.sh	10 Nov 2003 00:54:06 -0000	1.1
  +++ autogen.sh	21 Feb 2005 03:58:33 -0000	1.2
  @@ -78,7 +78,7 @@
     am_opt=--include-deps;;
   esac
   
  -for coin in `find $srcdir -path $srcdir/CVS -prune -o -name $configure_script -print`
  +for coin in `find $srcdir -name $srcdir/CVS -prune -o -name $configure_script -print`
   do 
     dr=`dirname $coin`
     if test -f $dr/NO-AUTO-GEN; then