[PD-cvs] scripts convert-help-to-standard.sh,1.2,1.3

Hans-Christoph Steiner eighthave at users.sourceforge.net
Sun Nov 27 06:05:07 CET 2005


Update of /cvsroot/pure-data/scripts
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15569

Modified Files:
	convert-help-to-standard.sh 
Log Message:
lots of build bug fixes and additions, including pixeltango and lots of binary files, including many flext externals. this will probably be pd-0.38.4-extended-RC5

Index: convert-help-to-standard.sh
===================================================================
RCS file: /cvsroot/pure-data/scripts/convert-help-to-standard.sh,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** convert-help-to-standard.sh	12 Jul 2005 04:42:43 -0000	1.2
--- convert-help-to-standard.sh	27 Nov 2005 05:05:05 -0000	1.3
***************
*** 12,17 ****
  for helpfile in help-*.pd ; do
  	 if [ -e $helpfile ]; then
! 		  mv "$helpfile" "`echo $helpfile | sed 's/^help\-\(.*\)\.pd$/\1-help.pd/'`"
! 		  echo "SWAP $helpfile FOR `echo $helpfile | sed 's/^help\-\(.*\)\.pd$/\1-help.pd/'`"
  	 fi
  done
--- 12,22 ----
  for helpfile in help-*.pd ; do
  	 if [ -e $helpfile ]; then
! 		  newhelpfile=`echo $helpfile | sed 's/^help\-\(.*\)\.pd$/\1-help.pd/'`
! 		  if [ "$helpfile" != "$newhelpfile" ]; then
! 				echo "  swap $helpfile" "$newhelpfile"
! 				mv "$helpfile" "$newhelpfile"
! 		  else
! 				echo "SAMEFILE $helpfile"
! 		  fi
  	 fi
  done





More information about the Pd-cvs mailing list