2003-12-17 Joel Sherrill <joel@OARcorp.com>

* release_support: Use dirname not basedir.  Keep going until I
	can get a tarball cut.
This commit is contained in:
Joel Sherrill
2003-12-17 18:52:57 +00:00
parent 784290662b
commit 7d4d95462a
2 changed files with 4 additions and 7 deletions

View File

@@ -31,7 +31,7 @@ case $1 in
c/src/aclocal/version.m4 \
cpukit/aclocal/version.m4
do
b=`basedir $version_file`/..
b=`dirname $version_file`/..
cat << EOF > $version_file
AC_DEFUN([RTEMS_VERSIONING],
m4_define([_RTEMS_VERSION],[${current}]))
@@ -42,7 +42,7 @@ EOF
echo ) >YYY
cat YYY ${b}/ChangeLog >XXX
mv XXX ${b}/ChangeLog
cvs -d ${cvs_root} commit -F YYY ${b}/ChangeLog ${version_file}
cvs commit -F YYY ${b}/ChangeLog ${version_file}
rm -f YYY
done
;;