blob: 59e4c0f1a40138fae87d20682cc63609711022a4 [file] [log] [blame]
Jari Aaltod166f041997-06-05 14:59:13 +00001#! /bin/sh
2#
3# mkconffiles - create _distribution and _patchlevel files in preparation
Chet Rameyac50fba2014-02-26 09:36:43 -05004# for recreating `configure' from `configure.ac'
Jari Aaltod166f041997-06-05 14:59:13 +00005#
6# options:
7# -s srcdir directory where `configure' resides (defaults to `.')
8# -d outdir directory where the files should be written (defaults
9# to "$srcdir")
10# -v verbose
11# -n nocreate - don't create the output files
12#
13# Chet Ramey
14# chet@po.cwru.edu
15
Jari Aalto7117c2d2002-07-17 14:10:11 +000016# Copyright (C) 1996-2002 Free Software Foundation, Inc.
17#
Jari Aalto31859422009-01-12 13:36:28 +000018# This program is free software: you can redistribute it and/or modify
19# it under the terms of the GNU General Public License as published by
20# the Free Software Foundation, either version 3 of the License, or
21# (at your option) any later version.
Jari Aalto7117c2d2002-07-17 14:10:11 +000022#
Jari Aalto31859422009-01-12 13:36:28 +000023# This program is distributed in the hope that it will be useful,
24# but WITHOUT ANY WARRANTY; without even the implied warranty of
25# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26# GNU General Public License for more details.
Jari Aalto7117c2d2002-07-17 14:10:11 +000027#
Jari Aalto31859422009-01-12 13:36:28 +000028# You should have received a copy of the GNU General Public License
29# along with this program. If not, see <http://www.gnu.org/licenses/>.
Jari Aalto7117c2d2002-07-17 14:10:11 +000030
Jari Aaltod166f041997-06-05 14:59:13 +000031PROG=`basename $0`
32
33# defaults
34srcdir=.
35
36distname="_distribution"
37patchname="_patchlevel"
38
39while [ $# -gt 0 ]; do
40 case "$1" in
41 -s) shift; srcdir="$1"; shift;;
42 -d) shift; outdir="$1"; shift;;
43 -v) shift; verbose=yes ;;
44 -n) shift; nocreate=yes;;
45 --) shift; break;;
46 *) echo "${PROG}: usage: ${PROG} [-s srcdir] [-d outdir] [-nv]" >&2; exit 2;;
47 esac
48done
49
50if [ ! -f ${srcdir}/configure ]; then
51 echo "${PROG}: ${srcdir}/configure not found" >&2
52 exit 1
53fi
54
55# default output directory to source directory
56if [ -z "$outdir" ]; then
57 outdir=${srcdir}
58fi
59
60DISTRIB=`grep '^BASHVERS' ${srcdir}/configure | sed 's:.*=::'`
61PATCH=`grep '^BASHPATCH' ${srcdir}/configure | sed 's:.*=::'`
62
63if [ -n "$verbose" ]; then
64 echo "${PROG}: creating new distribution files for bash-${DISTRIB}.${PATCH} in ${outdir}"
65fi
66
67distout=${outdir}/${distname}
68patchout=${outdir}/${patchname}
69
70if [ -z "$nocreate" ]; then
71 echo "$DISTRIB" > $distout
72 echo "$PATCH" > $patchout
73fi
74
75if [ -n "$verbose" ]; then
76 echo "${PROG}: created $distout and $patchout"
77fi
78
79exit 0