Update of /cvsroot/pure-data/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20323
Modified Files: Tag: branch-v0-39-2-extended checkout-developer-layout.sh generate-libdir-metafile.sh generate-pd-settings-files.sh load_every_help.sh load_every_object.sh Log Message: updated function syntax to be more strictly bourne shell compatible (i.e. removed bash syntax)
Index: checkout-developer-layout.sh =================================================================== RCS file: /cvsroot/pure-data/scripts/checkout-developer-layout.sh,v retrieving revision 1.8 retrieving revision 1.8.2.1 diff -C2 -d -r1.8 -r1.8.2.1 *** checkout-developer-layout.sh 19 Jul 2006 14:39:38 -0000 1.8 --- checkout-developer-layout.sh 24 Mar 2007 03:38:31 -0000 1.8.2.1 *************** *** 11,15 **** # behind the authenticated CVS.
! function print_usage () { echo " " --- 11,15 ---- # behind the authenticated CVS.
! print_usage () { echo " "
Index: generate-pd-settings-files.sh =================================================================== RCS file: /cvsroot/pure-data/scripts/generate-pd-settings-files.sh,v retrieving revision 1.12.2.1 retrieving revision 1.12.2.2 diff -C2 -d -r1.12.2.1 -r1.12.2.2 *** generate-pd-settings-files.sh 25 Feb 2007 06:21:49 -0000 1.12.2.1 --- generate-pd-settings-files.sh 24 Mar 2007 03:38:31 -0000 1.12.2.2 *************** *** 30,39 ****
# GNU/Linux -------------------------------------------------------------------# ! function print_gnulinux () { echo "loadlib$1: $2" >> $GNULINUX_FILE }
! function print_gnulinux_fontpath () { i=0 --- 30,39 ----
# GNU/Linux -------------------------------------------------------------------# ! print_gnulinux () { echo "loadlib$1: $2" >> $GNULINUX_FILE }
! print_gnulinux_fontpath () { i=0 *************** *** 44,48 **** }
! function print_gnulinux_footer () { echo "nloadlib: $1" >> $GNULINUX_FILE --- 44,48 ---- }
! print_gnulinux_footer () { echo "nloadlib: $1" >> $GNULINUX_FILE *************** *** 50,54 ****
# Mac OS X --------------------------------------------------------------------# ! function print_macosx () { echo -e "\t<key>loadlib$1</key>" >> $MACOSX_FILE --- 50,54 ----
# Mac OS X --------------------------------------------------------------------# ! print_macosx () { echo -e "\t<key>loadlib$1</key>" >> $MACOSX_FILE *************** *** 56,60 **** }
! function print_macosx_fontpath () { i=0 --- 56,60 ---- }
! print_macosx_fontpath () { i=0 *************** *** 67,76 ****
# Windows ---------------------------------------------------------------------# ! function print_windows () { echo ""loadlib$1"="$2"" >> $WINDOWS_FILE }
! function print_windows_fontpath () { j=0 --- 67,76 ----
# Windows ---------------------------------------------------------------------# ! print_windows () { echo ""loadlib$1"="$2"" >> $WINDOWS_FILE }
! print_windows_fontpath () { j=0 *************** *** 81,85 **** }
! function print_windows_delete () { echo ""${1}${2}"=-" >> $WINDOWS_FILE --- 81,85 ---- }
! print_windows_delete () { echo ""${1}${2}"=-" >> $WINDOWS_FILE
Index: load_every_object.sh =================================================================== RCS file: /cvsroot/pure-data/scripts/load_every_object.sh,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -d -r1.2 -r1.2.2.1 *** load_every_object.sh 26 Apr 2006 14:13:51 -0000 1.2 --- load_every_object.sh 24 Mar 2007 03:38:31 -0000 1.2.2.1 *************** *** 41,45 ****
! function make_netreceive_patch () { rm $1 --- 41,45 ----
! make_netreceive_patch () { rm $1 *************** *** 49,53 **** }
! function make_patch () { rm $2 --- 49,53 ---- }
! make_patch () { rm $2 *************** *** 58,62 **** }
! function open_patch () { echo "OPENING: $1 $2" >> $LOG_FILE --- 58,62 ---- }
! open_patch () { echo "OPENING: $1 $2" >> $LOG_FILE *************** *** 64,68 **** }
! function close_patch () { echo "CLOSING: $1" >> $LOG_FILE --- 64,68 ---- }
! close_patch () { echo "CLOSING: $1" >> $LOG_FILE
Index: load_every_help.sh =================================================================== RCS file: /cvsroot/pure-data/scripts/load_every_help.sh,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -d -r1.2 -r1.2.2.1 *** load_every_help.sh 8 Feb 2006 04:59:10 -0000 1.2 --- load_every_help.sh 24 Mar 2007 03:38:31 -0000 1.2.2.1 *************** *** 9,13 **** bindir=${PD_ROOT}/bin
! function make_netreceive_patch () { rm $1 --- 9,13 ---- bindir=${PD_ROOT}/bin
! make_netreceive_patch () { rm $1 *************** *** 17,21 **** }
! function open_patch () { echo "OPENING: $1 $2" >> $LOG_FILE --- 17,21 ---- }
! open_patch () { echo "OPENING: $1 $2" >> $LOG_FILE *************** *** 23,27 **** }
! function close_patch () { echo "CLOSING: $1" >> $LOG_FILE --- 23,27 ---- }
! close_patch () { echo "CLOSING: $1" >> $LOG_FILE
Index: generate-libdir-metafile.sh =================================================================== RCS file: /cvsroot/pure-data/scripts/generate-libdir-metafile.sh,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** generate-libdir-metafile.sh 28 Nov 2006 03:52:09 -0000 1.3 --- generate-libdir-metafile.sh 24 Mar 2007 03:38:31 -0000 1.3.2.1 *************** *** 10,14 ****
# Usage: print_pd_text($to_file, $meta_type, $text_to_print) ! function print_pd_text () { file_name="$1"; shift --- 10,14 ----
# Usage: print_pd_text($to_file, $meta_type, $text_to_print) ! print_pd_text () { file_name="$1"; shift