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

@@ -1,15 +1,12 @@
2003-12-17 Joel Sherrill <joel@OARcorp.com>
* VERSION: Updated to rtems-20031217-test.
* release_support: Use dirname not basedir. Keep going until I
can get a tarball cut.
2003-12-17 Joel Sherrill <joel@OARcorp.com>
* release_support: New file -- assistant to new cut_release script.
2003-12-17 Joel Sherrill <joel@OARcorp.com>
* VERSION: Updated to rtems-20031217-test.
2003-12-14 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: Remove automake/compile.am

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
;;