> > Mind posting a patch or diff?  I can't figure out what file you've
> > modified here.
> > 
> > Thanks,
> > 
> > --Eric
> 
> Sorry don't have time. it's file named missing located in newlib

Thanks!  All that was missing was the name of the file.  The patch
below works -- but I'm not sure it's the right fix.  The patches
pointed at earlier in this thread indicated that the problem is that
the check for makeinfo version doesn't work for versions > 10 (since
"10" compares less than "9").  The right fix would be to find where
that test is being done and fix it.  I haven't done that yet.

 ==> svn info
Path: .
URL: https://cegcc.svn.sourceforge.net/svnroot/cegcc/trunk/cegcc
Repository Root: https://cegcc.svn.sourceforge.net/svnroot/cegcc
[...]
Revision: 1227
[...]

 ==> svn diff
Index: src/newlib/missing
===================================================================
--- src/newlib/missing  (revision 1227)
+++ src/newlib/missing  (working copy)
@@ -299,8 +299,9 @@
     fi
     # If the file does not exist, the user really needs makeinfo;
     # let's fail without touching anything.
-    test -f $file || exit 1
-    touch $file
+    if test -f $file; then
+        touch $file
+    fi
     ;;
 
   tar)

--Eric
-- 
******************************************************************************
* From the desktop of: Eric House, xwo...@eehouse.org                        *
*       Crosswords 4.2 for MS Smartphone and PocketPC is OUT: xwords.sf.net  *
******************************************************************************

------------------------------------------------------------------------------
Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA
-OSBC tackles the biggest issue in open source: Open Sourcing the Enterprise
-Strategies to boost innovation and cut costs with open source participation
-Receive a $600 discount off the registration fee with the source code: SFAD
http://p.sf.net/sfu/XcvMzF8H
_______________________________________________
Cegcc-devel mailing list
Cegcc-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/cegcc-devel

Reply via email to