diff options
author | unknown <tim@threads.polyesthetic.msg> | 2001-03-04 19:42:05 -0500 |
---|---|---|
committer | unknown <tim@threads.polyesthetic.msg> | 2001-03-04 19:42:05 -0500 |
commit | 07dc15a5b0fafaf0a0bcde2768b34aad2f3825fa (patch) | |
tree | 9dd732e08dba156ee3d7635caedc0dc3107ecac6 /bdb/dist/s_readme | |
parent | 542e1c18dc5bf80665df55ffa04a48d986945259 (diff) | |
download | mariadb-git-07dc15a5b0fafaf0a0bcde2768b34aad2f3825fa.tar.gz |
Import changeset
Diffstat (limited to 'bdb/dist/s_readme')
-rwxr-xr-x | bdb/dist/s_readme | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/bdb/dist/s_readme b/bdb/dist/s_readme new file mode 100755 index 00000000000..9ff8a69bc88 --- /dev/null +++ b/bdb/dist/s_readme @@ -0,0 +1,18 @@ +#!/bin/sh - +# $Id: s_readme,v 1.2 2000/01/27 21:42:18 bostic Exp $ +# +# Build the README. + +. RELEASE + +f=../README +echo "Building $f" +rm -f $f +(echo "$DB_VERSION_STRING" && + echo "" && + echo -n "This is version " && + echo -n "$DB_VERSION_MAJOR.$DB_VERSION_MINOR.$DB_VERSION_PATCH" && + echo " of Berkeley DB from Sleepycat Software. To view" && + echo "the release and installation documentation, load the distribution file" && + echo "docs/index.html into your web browser.") > $f +chmod 444 $f |