don't use dirname
authorDavid D. Zuhn <zoo@cygnus>
Mon, 21 Jun 1993 19:38:14 +0000 (19:38 +0000)
committerDavid D. Zuhn <zoo@cygnus>
Mon, 21 Jun 1993 19:38:14 +0000 (19:38 +0000)
ChangeLog
install.sh

index 567afecb90fef1928702624fb5d8499159619c09..495732a2217140be7d9d6974fdb9d50730367be3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Fri Jun 18 12:03:10 1993  david d `zoo' zuhn  (zoo at majipoor.cygnus.com)
+
+       * install.sh: don't use dirname anymore (replaced with sed usage)
+
 Thu Jun 17 18:43:42 1993  Fred Fish  (fnf@cygnus.com)
 
        * Makefile.in:  Change extension for gzip'd files from '.z' to
index 710497a637ec39860ea65865f3b23c914417a871..649b960baad068c27e1a07f9da6acde0a8b43311 100755 (executable)
@@ -114,7 +114,8 @@ fi
 
 # Make a temp file name in the proper directory.
 
-dstdir=`dirname $dst`
+## this sed command emulates the dirname command
+dstdir=`echo $dst | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'`
 dsttmp=$dstdir/#inst.$$#
 
 # Make sure that the destination directory exists.