aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2001-03-14 21:11:53 +0000
committerPeter Eisentraut <peter_e@gmx.net>2001-03-14 21:11:53 +0000
commit8ec79860808bbb5d863a7f39bf335c44f2ed3ffb (patch)
treed0dc388d10a618de1b02a40cc091d04ea32b9608
parentb651540720c3a1286083c65994df4abc60d39105 (diff)
downloadpostgresql-8ec79860808bbb5d863a7f39bf335c44f2ed3ffb.tar.gz
postgresql-8ec79860808bbb5d863a7f39bf335c44f2ed3ffb.zip
It's "gmake dist" now.
-rwxr-xr-xsrc/tools/release_prep26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/tools/release_prep b/src/tools/release_prep
deleted file mode 100755
index 2503b7bcdd7..00000000000
--- a/src/tools/release_prep
+++ /dev/null
@@ -1,26 +0,0 @@
-#! /bin/sh
-#
-# release_prep: prepare the Postgres source tree for distribution
-#
-# This script should be run after checking out a fileset from the Postgres
-# CVS repository, and just before creating a tarfile from the checked-out
-# fileset. It does cleanup tasks to ensure that we have a good tarball.
-#
-# Run the script from the toplevel Postgres directory, ie, do
-# cd pgsql
-# src/tools/release_prep
-#
-# The script's tasks are:
-# 1. Run configure to prepare usable Makefiles on the local system.
-# 2. Generate distribution copies of some derived files such as gram.c.
-# (We do this so that recipients of the distribution don't have to have
-# tools that can create these files.)
-# 3. "make distclean" to get rid of the configure outputs, as well as any
-# other cruft that might be laying about.
-
-# Select make to use --- default gmake, can be overridden by env var
-: ${MAKE=gmake}
-
-./configure && \
-$MAKE distprep && \
-$MAKE distclean