On Mon, 2 Aug 2010 11:51:57 -0700 "Enlightenment SVN" <[email protected]> said:
ummmm - not good... because installed uncrustify may be an older version which doesnt handle all the formatting features. > Log: > don't reinstall if already installed but not in ~ > > Author: discomfitor > Date: 2010-08-02 11:51:57 -0700 (Mon, 02 Aug 2010) > New Revision: 50746 > > Modified: > trunk/FORMATTING/formatefl.sh > > Modified: trunk/FORMATTING/formatefl.sh > =================================================================== > --- trunk/FORMATTING/formatefl.sh 2010-08-02 17:47:49 UTC (rev 50745) > +++ trunk/FORMATTING/formatefl.sh 2010-08-02 18:51:57 UTC (rev 50746) > @@ -1,6 +1,10 @@ > #!/bin/bash > PREFIX="$HOME/.uncrustify" > -UNC="$PREFIX/bin/uncrustify" > +if which uncrustify &> /dev/null ;then > + UNC="$(which uncrustify)" > +else > + UNC="$PREFIX/bin/uncrustify" > +fi > if [ -z "$1" ]; then > echo "===================================================================" > echo " Checking if uncrustify installed already and is the right version" > > > ------------------------------------------------------------------------------ > The Palm PDK Hot Apps Program offers developers who use the > Plug-In Development Kit to bring their C/C++ apps to Palm for a share > of $1 Million in cash or HP Products. Visit us here for more details: > http://p.sf.net/sfu/dev2dev-palm > _______________________________________________ > enlightenment-svn mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/enlightenment-svn > -- ------------- Codito, ergo sum - "I code, therefore I am" -------------- The Rasterman (Carsten Haitzler) [email protected] ------------------------------------------------------------------------------ The Palm PDK Hot Apps Program offers developers who use the Plug-In Development Kit to bring their C/C++ apps to Palm for a share of $1 Million in cash or HP Products. Visit us here for more details: http://p.sf.net/sfu/dev2dev-palm _______________________________________________ enlightenment-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
