2001-03-05 01:42:05 +01:00
|
|
|
#!/bin/sh -
|
2002-10-30 12:57:05 +01:00
|
|
|
# $Id: s_readme,v 1.6 2002/02/14 02:50:26 bostic Exp $
|
2001-03-05 01:42:05 +01:00
|
|
|
#
|
|
|
|
# Build the README.
|
|
|
|
|
2002-10-30 12:57:05 +01:00
|
|
|
d=..
|
|
|
|
|
|
|
|
t=/tmp/__t
|
|
|
|
trap 'rm -f $t; exit 0' 0 1 2 3 13 15
|
|
|
|
|
2005-03-09 01:34:22 +01:00
|
|
|
. ./RELEASE
|
2001-03-05 01:42:05 +01:00
|
|
|
|
2002-10-30 12:57:05 +01:00
|
|
|
cat << END_OF_README>$t
|
|
|
|
$DB_VERSION_STRING
|
|
|
|
|
|
|
|
This is version $DB_VERSION_MAJOR.$DB_VERSION_MINOR.$DB_VERSION_PATCH of Berkeley DB from Sleepycat Software. To view
|
|
|
|
the release and installation documentation, load the distribution file
|
|
|
|
docs/index.html into your web browser.
|
|
|
|
END_OF_README
|
|
|
|
|
2001-03-05 01:42:05 +01:00
|
|
|
f=../README
|
2002-10-30 12:57:05 +01:00
|
|
|
cmp $t $f > /dev/null 2>&1 ||
|
|
|
|
(echo "Building $f" && rm -f $f && cp $t $f && chmod 444 $f)
|