* mk_cmds.sh: use ${SED} not sed in backtick expressions.
authorMark Eichin <eichin@mit.edu>
Thu, 23 Feb 1995 19:34:01 +0000 (19:34 +0000)
committerMark Eichin <eichin@mit.edu>
Thu, 23 Feb 1995 19:34:01 +0000 (19:34 +0000)
Use set -e so that if ${FILE} isn't found we actually fail.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4995 dc483132-0cff-0310-8789-dd5450dbe970

src/util/ss/ChangeLog
src/util/ss/mk_cmds.sh

index a5ce5ab6cb3e659d2802cf3d17eb27fc0552adf6..5447c7b69da5c0d13a73c8d4a357d12c63ab2ce1 100644 (file)
@@ -1,3 +1,8 @@
+Thu Feb 23 14:24:31 1995  Mark Eichin  (eichin@cygnus.com)
+
+       * mk_cmds.sh: use ${SED} not sed in backtick expressions.
+       Use set -e so that if ${FILE} isn't found we actually fail.
+
 Sat Oct 22 09:54:50 1994    (tytso@rsx-11)
 
        * list_rqs.c (ss_list_requests): 
index d41ab90417f4c87aa42bd7481ce7ae9078947237..0066422eb3386ba970961e8b57f660fddf1cdaaf 100644 (file)
@@ -6,9 +6,10 @@ DIR=@DIR@
 AWK=@AWK@
 SED=@SED@
 
+set -e
 FILE=$1
-ROOT=`echo $1 | sed -e s/.ct$//`
-BASE=`echo $ROOT | sed -e 's;.*/;;'`
+ROOT=`echo $1 | ${SED} -e s/.ct$//`
+BASE=`echo $ROOT | ${SED} -e 's;.*/;;'`
 TMP=ct$$.c
 
 ${SED} -f ${DIR}/ct_c.sed  ${FILE} \