[Nice-commit] Nice/bin nicec,1.42,1.43
Brought to you by:
bonniot
From: Daniel B. <bo...@us...> - 2006-01-25 10:38:56
|
Update of /cvsroot/nice/Nice/bin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5045/bin Modified Files: nicec Log Message: Changed bashism (SIGHUP) into POSIX syntax (HUP). Removed french language in comment (oops!). Index: nicec =================================================================== RCS file: /cvsroot/nice/Nice/bin/nicec,v retrieving revision 1.42 retrieving revision 1.43 diff -C2 -d -r1.42 -r1.43 *** nicec 31 Mar 2005 21:07:58 -0000 1.42 --- nicec 25 Jan 2006 10:38:48 -0000 1.43 *************** *** 3,7 **** ### The Nice compiler ### ! ### Copyright 2003 Daniel Bonniot ### The Java Virtual Machine can be specified in the JAVA environment variable. --- 3,7 ---- ### The Nice compiler ### ! ### Copyright 2006 Daniel Bonniot ### The Java Virtual Machine can be specified in the JAVA environment variable. *************** *** 17,22 **** while [ -h "$PRG" ]; do lsResult=`ls -ld "$PRG"` ! # d'apres expr sous linux, ^ est implicite ! # au debut de la deuxieme chaine et il ne faut pas le mettre link=`expr "$lsResult" : '.*-> \(.*\)$'` if expr "$link" : '/.*' > /dev/null; then --- 17,22 ---- while [ -h "$PRG" ]; do lsResult=`ls -ld "$PRG"` ! # According to linux expr, ^ is implicit ! # at the beginning of the second string and must be omitted link=`expr "$lsResult" : '.*-> \(.*\)$'` if expr "$link" : '/.*' > /dev/null; then *************** *** 90,94 **** # with 129. # This happens only when running inside Emacs with Sun's 1.4.2_04-b05. ! trap "" SIGHUP exec ${java} $class ${system_args} "$@" --- 90,94 ---- # with 129. # This happens only when running inside Emacs with Sun's 1.4.2_04-b05. ! trap "" HUP exec ${java} $class ${system_args} "$@" |